Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-16 | Merge pull request #8899 from toger5/BetterFlatStylebox | Rémi Verschelde | |
Better flat stylebox with rounded corners | |||
2017-08-16 | Synchronize parameter names in definition and declaration | TwistedTwigleg | |
Fixes #10244. | |||
2017-08-16 | Rename cull_AABB to cull_aabb | Rémi Verschelde | |
Part of #8830. | |||
2017-08-16 | Merge pull request #10264 from Rubonnek/use-const-reference | Rémi Verschelde | |
Use const reference where favorable | |||
2017-08-15 | Merge pull request #10334 from Faless/fix_spbuffer_utf8 | kubecz3k | |
Fix StreamPeer put_utf8_string not working | |||
2017-08-15 | Added Corner Enum | toger5 | |
2017-08-15 | Removing a Resource also deletes imported files. | Andreas Haas | |
2017-08-14 | Use const reference where favorable | Wilson E. Alvarez | |
2017-08-14 | Ability to save objects to binary format | Juan Linietsky | |
2017-08-14 | Fix StreamPeer put_utf8_string not working | Fabio Alessandrelli | |
2017-08-13 | Merge pull request #10296 from raymoo/fixstreampeerbuffer | Rémi Verschelde | |
Fix broken stream reading in StreamPeerBuffer | |||
2017-08-12 | InputEventJoypadMotion: Add missing is_pressed() method. | Andreas Haas | |
2017-08-12 | Fix broken stream reading in StreamPeerBuffer | Raymoo | |
2017-08-11 | Merge pull request #10190 from tagcup/euler_yxz | Rémi Verschelde | |
Use YXZ convention for Euler angles. | |||
2017-08-11 | Merge pull request #10163 from ISylvox/resoucre-to-resource | Rémi Verschelde | |
Core/io: Fix typo in resource_format_binary | |||
2017-08-11 | Merge pull request #10142 from bruvzg/3.0-osx-ime | Rémi Verschelde | |
Add IME support (macOS) | |||
2017-08-11 | Merge pull request #9987 from Rubonnek/move-members-to-initilization-list | Rémi Verschelde | |
Moved member variables from constructor to initialization list | |||
2017-08-10 | Fixes method definitions with extra number of arguments | Ignacio Etcheverry | |
2017-08-10 | Removes type information from vararg method binds | Ignacio Etcheverry | |
2017-08-10 | Removes type information from method binds | Ignacio Etcheverry | |
2017-08-10 | Adds missing type information to virtual method binds | Ignacio Etcheverry | |
2017-08-10 | Improves method bind detection of signature types | Ignacio Etcheverry | |
2017-08-09 | Implement NSTextInputClient protocol for IME | bruvzg | |
2017-08-09 | Use 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-08 | Moved member variables from constructor to initialization list | Wilson E. Alvarez | |
2017-08-08 | Set some reasonable limits for sending information to the debugger, closes #5848 | Juan Linietsky | |
2017-08-08 | core/io: fix typo 'resoucre' to 'resource' | Indah Sylvia | |
2017-08-07 | Display the Y angle properly when rotating from gizmo, partially helps #1479 | Juan Linietsky | |
2017-08-07 | Merge pull request #10112 from ISylvox/completely-renaming-path_db | Rémi Verschelde | |
Renames Leftover 'path_db' -->> 'node_path' [ci skip] | |||
2017-08-07 | renames leftover 'path_db' to node_path | Indah Sylvia | |
2017-08-07 | Makes all Godot API's methods Lower Case | Indah Sylvia | |
2017-08-06 | Merge pull request #10123 from bojidar-bg/7695-key-kp-enter | Juan Linietsky | |
Rename KEY_RETURN to KEY_ENTER and KEY_ENTER to KEY_KP_ENTER | |||
2017-08-06 | Rename KEY_RETURN to KEY_ENTER and KEY_ENTER to KEY_KP_ENTER | Bojidar Marinov | |
Closes #7695 | |||
2017-08-06 | keep default exported script values unless overriden, closes #8127 | Juan Linietsky | |
2017-08-06 | Fix is_class check typo in ObjectDB::cleanup | Ruslan Mustakov | |
2017-08-06 | Merge pull request #10117 from neikeq/pr-classdb-getpropidx | Ignacio Etcheverry | |
ClassDB: Adds get_property_index method | |||
2017-08-05 | few 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-06 | ClassDB: Adds get_property_index method | Ignacio Etcheverry | |
2017-08-05 | Made bool constructor explicit in Variant to avoid bugs, fixes #7843 | Juan Linietsky | |
2017-08-05 | renamed node path, closes #5691 | Juan 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-01 | Use atomics for memory use tracking | Pedro 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-31 | Merge pull request #9826 from RandomShaper/improve-atomics | Rémi Verschelde | |
Improve/add atomics | |||
2017-07-31 | Merge pull request #8567 from BastiaanOlij/ar_vr_server | Rémi Verschelde | |
AR/VR base classes and position tracker support | |||
2017-07-30 | Style: Apply clang-format on all files | Rémi Verschelde | |
Thus fixing some invalid changes that had still made it to the master branch. | |||
2017-07-28 | Fix passing Refs via ptrcall | Ruslan Mustakov | |
There was no constructor for Ref from const pointer, so compiler decided to construct Variant from pointer and then construct Ref from Variant which turned it into NULL, because the Variant had null ref field. | |||
2017-07-28 | Merge pull request #9879 from RandomShaper/fix-mutating-settings-file | Rémi Verschelde | |
Fix mutating project.godot | |||
2017-07-28 | Adding base classes and structures for ARVR support | BastiaanOlij | |
Added ArVrScriptInterface Added ARVRCamera, ARVRController and ARVROrigin helper objects | |||
2017-07-27 | added an optional parameter to OS symbol lookup | Karroffel | |
When looking up a symbol from a library, previously an error was shown when the symbol did not exist. That caused confusion when the lookup was completely optional. This adds a new parameter to that method so that those errors can be handled manually if needed. | |||
2017-07-27 | Merge pull request #9872 from bruvzg/3.0-num-enter-fix | Rémi Verschelde | |
Remove duplicate keycode constant for Numpad Enter key (3.0) |