summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2017-08-18Rename localization method to `tr` againRémi Verschelde
Partial revert of #10380 based on contributor ~~bullying~~ feedback.
2017-08-18Properly manage drawing of primitives when they lack an area, fixes #8930Juan Linietsky
2017-08-18-Properly check limits to objects sent (regarding to size), fixes #9034Juan Linietsky
-Changed the way objects are marshalled and sent to the debugger -Editing debugged objects happens in the remote inspector now
2017-08-18Merge pull request #10406 from marcelofg55/closest_power_of_2Rémi Verschelde
Add closest_power_of_2 func and implement mix_rate/latency on OS X
2017-08-17Add closest_power_of_2 func and implement mix_rate/latency on OS XMarcelo Fernandez
2017-08-17Merge pull request #10380 from akien-mga/XL_MESSAGERémi Verschelde
Rename `XL_MESSAGE`/`tr` to `localize`
2017-08-17Rename `XL_MESSAGE` aka `tr` to `localize`Rémi Verschelde
Also renames `set_message_translation` to `set_message_localization` for consistency.
2017-08-16Merge pull request #8899 from toger5/BetterFlatStyleboxRémi Verschelde
Better flat stylebox with rounded corners
2017-08-16Synchronize parameter names in definition and declarationTwistedTwigleg
Fixes #10244.
2017-08-16Rename cull_AABB to cull_aabbRémi Verschelde
Part of #8830.
2017-08-16Merge pull request #10264 from Rubonnek/use-const-referenceRémi Verschelde
Use const reference where favorable
2017-08-15Merge pull request #10334 from Faless/fix_spbuffer_utf8kubecz3k
Fix StreamPeer put_utf8_string not working
2017-08-15Added Corner Enumtoger5
2017-08-15Removing a Resource also deletes imported files.Andreas Haas
2017-08-14Use const reference where favorableWilson E. Alvarez
2017-08-14Ability to save objects to binary formatJuan Linietsky
2017-08-14Fix StreamPeer put_utf8_string not workingFabio Alessandrelli
2017-08-13Merge pull request #10296 from raymoo/fixstreampeerbufferRémi Verschelde
Fix broken stream reading in StreamPeerBuffer
2017-08-12InputEventJoypadMotion: Add missing is_pressed() method.Andreas Haas
2017-08-12Fix broken stream reading in StreamPeerBufferRaymoo
2017-08-11Merge pull request #10190 from tagcup/euler_yxzRémi Verschelde
Use YXZ convention for Euler angles.
2017-08-11Merge pull request #10163 from ISylvox/resoucre-to-resourceRémi Verschelde
Core/io: Fix typo in resource_format_binary
2017-08-11Merge pull request #10142 from bruvzg/3.0-osx-imeRémi Verschelde
Add IME support (macOS)
2017-08-11Merge pull request #9987 from Rubonnek/move-members-to-initilization-listRémi Verschelde
Moved member variables from constructor to initialization list
2017-08-10Fixes method definitions with extra number of argumentsIgnacio Etcheverry
2017-08-10Removes type information from vararg method bindsIgnacio Etcheverry
2017-08-10Removes type information from method bindsIgnacio Etcheverry
2017-08-10Adds missing type information to virtual method bindsIgnacio Etcheverry
2017-08-10Improves method bind detection of signature typesIgnacio Etcheverry
2017-08-09Implement NSTextInputClient protocol for IMEbruvzg
2017-08-09Use YXZ convention for Euler angles.Ferenc Arn
As discussed in issues #1479 and #9782, choosing the up axis (which is Y in Godot) as the axis of the last (or first) rotation is helpful in practical use cases. This also aligns Godot's convention with Unity, helping with a smoother transition for people who are used to working with Unity (issue #9905). Internally, both XYZ and YXZ functions are kept, for potential future applications.
2017-08-08Moved member variables from constructor to initialization listWilson E. Alvarez
2017-08-08Set some reasonable limits for sending information to the debugger, closes #5848Juan Linietsky
2017-08-08core/io: fix typo 'resoucre' to 'resource'Indah Sylvia
2017-08-07Display the Y angle properly when rotating from gizmo, partially helps #1479Juan Linietsky
2017-08-07Merge pull request #10112 from ISylvox/completely-renaming-path_dbRémi Verschelde
Renames Leftover 'path_db' -->> 'node_path' [ci skip]
2017-08-07renames leftover 'path_db' to node_pathIndah Sylvia
2017-08-07Makes all Godot API's methods Lower CaseIndah Sylvia
2017-08-06Merge pull request #10123 from bojidar-bg/7695-key-kp-enterJuan Linietsky
Rename KEY_RETURN to KEY_ENTER and KEY_ENTER to KEY_KP_ENTER
2017-08-06Rename KEY_RETURN to KEY_ENTER and KEY_ENTER to KEY_KP_ENTERBojidar Marinov
Closes #7695
2017-08-06keep default exported script values unless overriden, closes #8127Juan Linietsky
2017-08-06Fix is_class check typo in ObjectDB::cleanupRuslan Mustakov
2017-08-06Merge pull request #10117 from neikeq/pr-classdb-getpropidxIgnacio Etcheverry
ClassDB: Adds get_property_index method
2017-08-05few bugs fixed thanks to explicit bool constructor and clang.Juan Linietsky
explicit bool constructor has thus now been removed, as it served it's mission!
2017-08-06ClassDB: Adds get_property_index methodIgnacio Etcheverry
2017-08-05Made bool constructor explicit in Variant to avoid bugs, fixes #7843Juan Linietsky
2017-08-05renamed node path, closes #5691Juan Linietsky
2017-08-02-Added GLTF scene support (still missing animations and .glb extension)Juan Linietsky
-Fixed bugs regarding tangent generation in SurfaceTool
2017-08-01Use atomics for memory use trackingPedro J. Estébanez
Plus: - An allocation is counted only after checking its success. - Max usage is updated after growing reallocs as well. - Drop unused header. - Changed the 0xFFF.. at get_mem_available() to -1 with a comment telling it's the same, but more universal.
2017-07-31Merge pull request #9826 from RandomShaper/improve-atomicsRémi Verschelde
Improve/add atomics