Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-11 | Use get_cursor_shape for identifying the cursor shape in AnimationTimelineEdit | Markus Sauermann | |
get_cursor_shape() is used in cases where a Control displays different cursors in different areas. There is no need to set the default cursor shape on every mouse move event. | |||
2022-03-11 | Merge pull request #59001 from ↵ | Rémi Verschelde | |
BastiaanOlij/only_uninitialise_openxr_if_initialised Only uninitialise OpenXR on destruct if it was initialized | |||
2022-03-11 | Merge pull request #58965 from TechnoPorg/remove-stex-occurrences | Rémi Verschelde | |
Remove more occurrences of "stex" | |||
2022-03-11 | Merge pull request #59005 from timothyqiu/unused-code | Rémi Verschelde | |
Remove unused code in `AnimationPlayerEditor::_update_animation_list_icons()` | |||
2022-03-11 | Merge pull request #59002 from MythTitans/fix-visible-seam-torus | Rémi Verschelde | |
Fix normals computation at the 'seam' of smoothed torus shape | |||
2022-03-10 | Remove more occurrences of "stex" | TechnoPorg | |
2022-03-11 | Remove unused code in `AnimationPlayerEditor::_update_animation_list_icons()` | Haoyu Qiu | |
2022-03-11 | Fix normals computation at the 'seam' of smoothed torus shape | MythTitans | |
2022-03-11 | Only uninitialise OpenXR on destruct if it was initialised | Bastiaan Olij | |
2022-03-10 | Merge pull request #58335 from maiself/fix-directory-delete-linux | Rémi Verschelde | |
2022-03-10 | Merge pull request #58485 from aaronfranke/time-offset | Rémi Verschelde | |
2022-03-10 | Merge pull request #58706 from timothyqiu/property-i18n | Rémi Verschelde | |
2022-03-10 | Merge pull request #58781 from BastiaanOlij/openxr_signals_and_events | Rémi Verschelde | |
Adding signals and events to OpenXR interface | |||
2022-03-10 | Merge pull request #58984 from rcorre/export-create | Rémi Verschelde | |
2022-03-10 | Merge pull request #58981 from EricEzaM/improvement/popup-menu-even-spacing | Rémi Verschelde | |
2022-03-10 | Merge pull request #58972 from reduz/expose-more-gdextension | Rémi Verschelde | |
2022-03-10 | Create parent directories on export. | Ryan Roden-Corrent | |
Fixes #42231. This works for both the UI and the --export CLI flag. | |||
2022-03-10 | Editor Style: make popup menu vseparation even, and force it to be even. | Eric M | |
2022-03-10 | Merge pull request #56476 from gerhean/fix_shortcut_collapse_after_edit | Rémi Verschelde | |
2022-03-10 | Merge pull request #58735 from ↵ | Fabio Alessandrelli | |
Calinou/editor-visual-profiler-tweak-frame-time-label Tweak editor visual profiler frame time label for consistency | |||
2022-03-10 | Discern between virtual and abstract class bindings | reduz | |
* Previous "virtual" classes (which can't be instantiated) are not corretly named "abstract". * Added a new "virtual" category for classes, they can't be instantiated from the editor, but can be inherited from script and extensions. * Converted a large amount of classes from "abstract" to "virtual" where it makes sense. Most classes that make sense have been converted. Missing: * Physics servers * VideoStream * Script* classes. which will go in a separate PR due to the complexity involved. | |||
2022-03-10 | Merge pull request #58690 from elmordo/bugfix-57553-gdextension-inheritance-fix | Rémi Verschelde | |
2022-03-10 | Merge pull request #58978 from Sauermann/revert-58913 | Rémi Verschelde | |
2022-03-10 | Revert "Update mouse cursor shape after changes" | Markus Sauermann | |
This reverts commit 0fce98b4b5f568298477b175c70510924793f6b0. | |||
2022-03-10 | Merge pull request #58969 from timothyqiu/ani-editor-theme | Rémi Verschelde | |
Fix some Animation panel icons not updating after theme change | |||
2022-03-10 | Merge pull request #58958 from hoontee/master | Rémi Verschelde | |
Revert #52647 (Don't update CSG Shape when not inside tree) | |||
2022-03-10 | Merge pull request #58946 from akien-mga/remove-unused-bullet-code | Rémi Verschelde | |
Remove unused Bullet module and thirdparty code | |||
2022-03-10 | Merge pull request #58963 from timothyqiu/texture-region-grid-color | Rémi Verschelde | |
Fix TextureRegion editor grid color for light themes | |||
2022-03-10 | Fix some Animation panel icons not updating after theme change | Haoyu Qiu | |
2022-03-10 | Adding signals and events to OpenXR interface | Bastiaan Olij | |
Improving interaction profile logic | |||
2022-03-10 | Fix TextureRegion editor grid color for light themes | Haoyu Qiu | |
2022-03-09 | Revert #52647 | hoontee | |
2022-03-09 | Merge pull request #58950 from akien-mga/fix-undoredo-argcount | Rémi Verschelde | |
2022-03-09 | Fix UndoRedo method call argument count after #58929 | Rémi Verschelde | |
2022-03-09 | Remove unused Bullet module and thirdparty code | Rémi Verschelde | |
It has been disabled in `master` since one year (#45852) and our plan is for Bullet, and possibly other thirdparty physics engines, to be implemented via GDExtension so that they can be selected by the users who need them. | |||
2022-03-09 | Merge pull request #58907 from novaplusplus/gutter_spam_fix | Rémi Verschelde | |
2022-03-09 | Merge pull request #58929 from reduz/remove-variant-arg-macros | Rémi Verschelde | |
Remove VARIANT_ARG* macros | |||
2022-03-09 | Merge pull request #58865 from timothyqiu/more-i18n | Rémi Verschelde | |
Add missing i18n to various strings | |||
2022-03-09 | Merge pull request #58937 from hoontee/master | Rémi Verschelde | |
Add SNAME macro optimization missed during rebase of #40814 | |||
2022-03-09 | Remove VARIANT_ARG* macros | reduz | |
* Very old macros from the time Godot was created. * Limited arguments to 5 (then later changed to 8) in many places. * They were replaced by C++11 Variadic Templates. * Renamed methods that take argument pointers to have a "p" suffix. This was used in some places and not in others, so made it standard. * Also added a dereference check for Variant*. Helped catch a couple of bugs. | |||
2022-03-09 | Add SNAME macro optimization missed during rebase | hoontee | |
2022-03-09 | Merge pull request #58925 from akien-mga/remove-unused-gdnative-code | Rémi Verschelde | |
2022-03-09 | Merge pull request #58926 from ↵ | Rémi Verschelde | |
fabriceci/avoid-direction-correction-when-motion-is-down | |||
2022-03-09 | Merge pull request #40814 from hoontee/master | Rémi Verschelde | |
2022-03-09 | Remove unused GDNative code | Rémi Verschelde | |
This has been superseded by GDExtension so this code is no longer useful nor usable. There's still some GDNative-related stuff in platform export code which needs to be adapted for GDExtension (e.g. to include GDExtension libraries in exports). | |||
2022-03-09 | Avoid directional correction when the motion is downward | fabriceci | |
2022-03-09 | Merge pull request #58923 from MmAaXx500/headless | Rémi Verschelde | |
2022-03-09 | i18n: Sync classref translations with Weblate | Rémi Verschelde | |
(cherry picked from commit 6c56433997b3e0bb3a81a0dee8be145a240f37d4) | |||
2022-03-09 | i18n: Sync editor translations with Weblate | Rémi Verschelde | |
(cherry picked from commit 751769ed45f835e96eedb7cf1aa47733b342d969) | |||
2022-03-09 | Add missing header for headless builds | MmAaXx500 | |