Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-07-03 | Merge pull request #50080 from reduz/fix-old-mesh-compatibility | Rémi Verschelde | |
Add compatibility with old mesh formats | |||
2021-07-03 | Merge pull request #50096 from reduz/fix-render-info | Rémi Verschelde | |
Fix Render Info | |||
2021-07-03 | Fix Render Info | reduz | |
* Fixed and redone the process to obtain render information from a viewport * Some stats, such as material changes are too difficult to guess on Vulkan, were removed. * Separated visible and shadow stats, which causes confusion. * Texture, buffer and general video memory can be queried now. * Fixed the performance metrics too. | |||
2021-07-03 | Merge pull request #49468 from menip/FixGetScreenPosition | Rémi Verschelde | |
Fix Control::get_screen_position() not considering viewport scale | |||
2021-07-03 | Merge pull request #50099 from KoBeWi/' | Rémi Verschelde | |
Support single quote when dropping files to script | |||
2021-07-03 | Support single quote when dropping files to script | kobewi | |
2021-07-03 | Merge pull request #50119 from BastiaanOlij/fix_override_scene_render | Rémi Verschelde | |
Properly override virtual functions in render_scene_render_rd | |||
2021-07-03 | Properly override virtual functions in render_scene_render_rd and subclasses | Bastiaan Olij | |
2021-07-03 | Merge pull request #50102 from nekomatata/expose-body-test-motion-3d | Rémi Verschelde | |
Expose body_test_motion in 3D physics server | |||
2021-07-02 | Expose body_test_motion in 3D physics server | PouleyKetchoupp | |
Results are exposed through PhysicsTestMotionResult3D, the same way it's done for 2D. Also cleaned a few things in the 2D version. | |||
2021-07-02 | Merge pull request #50092 from YeldhamDev/window_get_contents_expose | Rémi Verschelde | |
Expose `Window.get_contents_minimum_size()` to scripts | |||
2021-07-02 | Merge pull request #50089 from YeldhamDev/splitcontainer_minimal_fix | Rémi Verschelde | |
Make invisible `SplitContainer` nodes correctly calculate the minimal size of its children | |||
2021-07-02 | Merge pull request #50090 from ↵ | Rémi Verschelde | |
Calinou/remove-leftover-optimized-directional-shadow-depth-range Remove leftovers from the DirectionalLight3D Optimized shadow depth range | |||
2021-07-02 | Merge pull request #50085 from madmiraal/android-replace-stringbuffer | Rémi Verschelde | |
Use StringBuilder instead StringBuffer in Godot Java code | |||
2021-07-02 | Merge pull request #50083 from madmiraal/android-fix-raw-use | Rémi Verschelde | |
Fix raw use of parameterized Class | |||
2021-07-02 | Merge pull request #50087 from madmiraal/android-remove-redundant-explicit-types | Rémi Verschelde | |
Remove redundant explicit types in Godot Java code | |||
2021-07-02 | Expose `Window.get_contents_minimum_size()` to scripts | Michael Alexsander | |
2021-07-02 | Remove leftovers from the DirectionalLight3D Optimized shadow depth range | Hugo Locurcio | |
The Optimized shadow depth range was removed in late 2020 in favor of the Stable shadow depth range, but it still had a (broken) property that allowed to enable it. | |||
2021-07-02 | Make invisible `SplitContainer` nodes correctly calculate the minimal size ↵ | Michael Alexsander | |
of its children | |||
2021-07-02 | Remove redundant explicit types in Godot Java code | Marcel Admiraal | |
2021-07-02 | Merge pull request #50081 from Calinou/doc-randomnumbergenerator | Rémi Verschelde | |
Improve and clarify documentation for RandomNumberGenerator | |||
2021-07-02 | Use StringBuilder instead StringBuffer in Godot Java code | Marcel Admiraal | |
2021-07-02 | Improve and clarify documentation for RandomNumberGenerator | Hugo Locurcio | |
2021-07-02 | Merge pull request #50078 from madmiraal/android-remove-unused-imports | Rémi Verschelde | |
2021-07-02 | Fix raw use of parameterized Class | Marcel Admiraal | |
2021-07-02 | Add compatibility with old mesh formats | reduz | |
* Can load 2.x meshes * Can load 3.x meshes | |||
2021-07-02 | Merge pull request #50077 from thebestnom/fix/initialize_mouse_mode | Rémi Verschelde | |
Android: Initialize mouse mode | |||
2021-07-02 | Android: Initialize mouse mode | thebestnom | |
2021-07-02 | Remove unused imports from Android Java code | Marcel Admiraal | |
2021-07-02 | Merge pull request #50074 from madmiraal/android-replace-c-array | Rémi Verschelde | |
Use Java array declarations not C-style declarations in Android Java code | |||
2021-07-02 | Merge pull request #50072 from madmiraal/android-remove-interface-modifiers | Rémi Verschelde | |
Remove redundant interface modifiers from Android Java code | |||
2021-07-02 | Use Java array declarations not C-style declarations in Android Java code | Marcel Admiraal | |
2021-07-02 | Merge pull request #50071 from madmiraal/android-remove-semicolons | Rémi Verschelde | |
Remove unnecessary semicolons from Android Java code | |||
2021-07-02 | Merge pull request #50065 from SirQuartz/patch-1 | Rémi Verschelde | |
Add `action_get_deadzone()` method to `InputMap` | |||
2021-07-02 | Remove redundant interface modifiers from Android Java code | Marcel Admiraal | |
2021-07-02 | Remove unnecessary semicolons from Android Java code | Marcel Admiraal | |
2021-07-02 | Add `get_dead_zone()` method to `InputMap` | Nick H | |
This commit adds a new method to the `InputMap`, allowing the user to get the value of an action's dead zone as a float. | |||
2021-07-01 | Merge pull request #50058 from reduz/fix-surface-from-arrays | Juan Linietsky | |
Fix surface from array creation | |||
2021-07-01 | Merge pull request #50057 from reduz/force-string-in-dictionary | Rémi Verschelde | |
Force String as Dictionary key instead of StringName | |||
2021-07-01 | Fix surface from array creation | reduz | |
* The debug check was not updated to the new format. * Bug introduced by #50037 | |||
2021-07-01 | Merge pull request #50041 from aaronfranke/prop-usage-flags | Rémi Verschelde | |
Use `PROPERTY_USAGE_NONE` instead of `0` for no property usage | |||
2021-07-01 | Force String as Dictionary key instead of StringName | reduz | |
* Lua table syntax uses named indexing: `{ mykey = myvalue }` * Python style syntax uses string indexing: `{ "mykey" : myvalue }` * Both are incompatible since a StringName key wont fetch a String key, hence confusing. * This PR proposes always using String for indexing at a very minimal performance cost. Always indexing with StringNames will be faster, but they are considerably more expensive to create. | |||
2021-07-01 | Use PROPERTY_USAGE_NONE instead of 0 for no property usage | Aaron Franke | |
Also use const more often. | |||
2021-07-01 | Merge pull request #50052 from Valeryn4/Valeryn4-Fix-GridMap | Rémi Verschelde | |
2021-07-02 | Fix GridMap erase Octans | Pitanov V.V | |
2021-07-01 | Merge pull request #50040 from reduz/fix-renderingserver-bindings | Rémi Verschelde | |
Clean up RenderingServer and its bindings | |||
2021-07-01 | Clean up RenderingServer and its bindings | reduz | |
* Rewrote bindings for RenderingServer. * They are now all up to date. * Several unused methods and deprecated features were cleaned up. | |||
2021-07-01 | Merge pull request #50044 from akien-mga/localvector-find-noerror | Rémi Verschelde | |
LocalVector: Don't error if `from` >= `count` | |||
2021-07-01 | Merge pull request #50026 from lyuma/callable_is_valid | Rémi Verschelde | |
Add Callable.is_valid() analogous to FuncRef.is_valid() from 3.x | |||
2021-07-01 | LocalVector: Don't error if `from` >= `count` | Rémi Verschelde | |
Vector handles this silently by returning -1, and we should do the same here. Otherwise we get errors when calling `find()` on e.g. a LocalVector of size 0, while `find()` is expected to always work (if the parameters are invalid then it doesn't find anything, so -1). Fixup to #49925. |