Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-19 | Implement TileMap patterns palette | Gilles Roudière | |
2021-10-04 | GDScript completion: Handle quote style ad-hoc to remove editor dependency | Rémi Verschelde | |
`core` and `scene` shouldn't depend on `editor`, so they can't query this style setting in `get_argument_options`. But we can handle it after the fact in GDScript's completion code. Also cleans up a couple extra unused invalid includes in `core`. | |||
2021-10-04 | Add the base scale factor to the Theme resource | Yuri Sizov | |
2021-10-01 | Implement TextServer GDExtension interface, remove TextServer GDNative ↵ | bruvzg | |
interface. | |||
2021-10-01 | Allow non-control Nodes to handle drag forwarding (e.g. Windows) | Eric M | |
2021-09-05 | Prevent editing properties managed by parent container | Awkor | |
2021-08-23 | Entirely removes BIND_VMETHOD in favor of GDVIRTUAL | reduz | |
* `_gui_input`, `_input`, `_unhandled_input` and `_unhandled_key_input` are now regular C++ virutal functions. * Everything else converted to GDVIRTUAL * BIND_VMETHOD is gone, always use the new syntax from now on. Creating `_gui_input` method and using the binder to register events will no longer work, simply override the virtual function now. | |||
2021-08-22 | Replace BIND_VMETHOD by new GDVIRTUAL syntax | reduz | |
* New syntax is type safe. * New syntax allows for type safe virtuals in native extensions. * New syntax permits extremely fast calling. Note: Everything was replaced where possible except for `_gui_input` `_input` and `_unhandled_input`. These will require API rework on a separate PR as they work different than the rest of the functions. Added a new method flag METHOD_FLAG_OBJECT_CORE, used internally. Allows to not dump the core virtuals like `_notification` to the json API, since each language will implement those as it is best fits. | |||
2021-08-13 | Merge pull request #51642 from akien-mga/cleanup-use_single_quotes | Rémi Verschelde | |
2021-08-13 | Style: Cleanup code using `text_editor/completion/use_single_quotes` | Rémi Verschelde | |
2021-08-13 | Add bulk theme overrides to Control | Paulb23 | |
2021-07-31 | Make theme item overrides more obvious in the Inspector | Yuri Sizov | |
2021-07-30 | Fix "Custom *" theme sections being inside "Auto Translate" | Michael Alexsander | |
2021-07-29 | Add `auto_translate` toggle for automatic translation | Michael Alexsander | |
2021-07-25 | Merge pull request #50835 from bruvzg/optimize_is_rtl | Rémi Verschelde | |
Optimise `is_layout_rtl`. | |||
2021-07-25 | Merge pull request #50809 from akien-mga/iterators-const-references | Rémi Verschelde | |
2021-07-25 | Use const references where possible for List range iterators | Rémi Verschelde | |
2021-07-25 | Fix various typos with codespell | luz paz | |
Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint` | |||
2021-07-25 | Optimise `is_layout_rtl` by caching its return value. | bruvzg | |
2021-07-23 | Use C++ iterators for Lists in many situations | Aaron Franke | |
2021-07-20 | Editor StringName and Viewport optimizations | Joan Fons | |
* Added explicit return type to the SNAME macro. * Add some extra SNAME usages. * Change some ClassDB methods to use const StringName & arguments. * Cache the Window parent in Control because it's used in is_layout_rtl(), which is called often. * Only enable internal processing for viewports that need it. * Change CanvasItem::group to be a StringName because it's only used as that. | |||
2021-07-13 | Add type variations to Theme | Yuri Sizov | |
2021-07-03 | Merge pull request #49468 from menip/FixGetScreenPosition | Rémi Verschelde | |
Fix Control::get_screen_position() not considering viewport scale | |||
2021-06-30 | Fix editor suffixes and degrees conversion | reduz | |
* Functions to convert to/from degrees are all gone. Conversion is done by the editor. * Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees. * Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m" * In general, can add suffixes for EditorSpinSlider Not covered by this PR, will have to be addressed by future ones: * Ability to switch radians/degrees in the inspector for angle properties (if actually wanted). * Animations previously made will most likely break, need to add a way to make old ones compatible. * Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes. * Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too. | |||
2021-06-29 | Merge pull request #49719 from LightningAA/rename-node-is-ancestor-of | Rémi Verschelde | |
Rename `is_a_parent_of()` to `is_ancestor_of()` | |||
2021-06-25 | Implement native extension system | reduz | |
* Deprecates GDNative in favor of a simpler, lower level interface. * New extension system allows registering core engine classes. * Simple header interface in gdnative_interace.h | |||
2021-06-25 | Remove clips_input() method and use clip_content | kobewi | |
2021-06-21 | Rename `is_a_parent_of()` to `is_ancestor_of()` | Lightning_A | |
2021-06-17 | Add PROPERTY_USAGE_NONE and use it | Aaron Franke | |
2021-06-12 | Consistently prefix bound virtual methods with _ | kobewi | |
2021-06-09 | Fix Control::get_screen_position() not considering viewport scale | menip | |
2021-06-03 | Merge pull request #46482 from KoBeWi/size_warning_the_sequel | Rémi Verschelde | |
Warn about changing size only when it's relevant | |||
2021-05-25 | Tweak dozens of editor property hints for consistency | Hugo Locurcio | |
- Update Viewport MSAA property hints to match the currently exposed values. - Add some performance hints to property hints. | |||
2021-05-17 | Add theme_custom_type property to Control and Window | Yuri Sizov | |
2021-05-13 | Fix variable names for "usage" flags in `Control::_get_property_list()` | Andrii Doroshenko (Xrayez) | |
Renamed incorrect "hint" variable names to "usage" in `_get_property_list()`, as "hint" implies one of the PROPERTY_HINT_* values, which is not the case here. | |||
2021-04-30 | Fix autocompletion for Control's Theme properties | Yuri Sizov | |
2021-04-11 | Use Array for node configuration warnings | Nathan Franke | |
Previously, the warnings were passed as a string and delimitation of which were hard coded at each implementation. | |||
2021-03-31 | Merge pull request #47252 from KoBeWi/themecide | Rémi Verschelde | |
Add methods to remove theme overrides | |||
2021-03-30 | Merge pull request #46702 from HaSa1002/fix-min-size-resize | Rémi Verschelde | |
Fix removal of `rect_min_size` not triggering resize | |||
2021-03-23 | Fix removal of `rect_min_size` not triggering resize | Johannes | |
fixes #46672 | |||
2021-03-23 | Remove the clearing behavior from add_override | kobewi | |
2021-03-23 | Add methods to remove theme overrides | kobewi | |
2021-03-19 | Use real_t in non-physics 2D nodes | Aaron Franke | |
2021-03-15 | Check if _edit_set_position and _edit_set_rect was used outside an editor | Kongfa Waroros | |
2021-03-12 | Fixes small typos and grammar correction | Anshul7sp1 | |
2021-03-05 | Fix Control._edit_set_state crash | sps1112 | |
2021-03-04 | Revert "Add size check in Control._edit_set_state to prevent crash" | Rémi Verschelde | |
This reverts commit ef1d58f034233a0d8b5d0b5dbf539e851ffc726c. | |||
2021-03-04 | Add size check in Control._edit_set_state to prevent crash | sps1112 | |
2021-03-01 | Merge pull request #41437 from KoBeWi/put_it_here | Rémi Verschelde | |
Allow to create a node at specific position | |||
2021-02-27 | Warn about changing size only when it's relevant | kobewi | |