Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-01-24 | PropertyUsage: Rename "DO_NOT_SHARE_ON_DUPLICATE" to "ALWAYS_DUPLICATE" | Aaron Franke | |
2023-01-24 | Merge pull request #65137 from dalexeev/editor-naming | Yuri Sizov | |
Rearrange `editor/naming/*` project settings | |||
2023-01-23 | Merge pull request #57606 from SaracenOne/update_on_reimport | Rémi Verschelde | |
Update instances of scenes which have been reimported. | |||
2023-01-21 | Merge pull request #71021 from reduz/prevent-physics-callback-removal | Rémi Verschelde | |
Error when removing a physics node during a physics callback | |||
2023-01-16 | Update instances of scenes which have been reimported. | SaracenOne | |
2023-01-12 | Rearrange `editor/naming/*` project settings | Danil Alexeev | |
2023-01-10 | Add Node::get_window() method. | bruvzg | |
2023-01-07 | Merge pull request #36301 from KoBeWi/daddy_node | Rémi Verschelde | |
Add reparent methods to Node | |||
2023-01-07 | Error when removing a phycics node during a physics callback | Juan Linietsky | |
* This behavior is not allowed, the error text suggests using call_deferred(). * Added a check in Node::remove_child to prevent future crashes of this type. * Fixed a performance regression introduced by #36244. Fixes #63718, probably other crashes too. | |||
2023-01-06 | Merge pull request #68429 from KoBeWi/PropertySettings | Rémi Verschelde | |
Add PropertyInfo overload for GLOBAL_DEF | |||
2023-01-05 | One Copyright Update to rule them all | Rémi Verschelde | |
As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see". | |||
2022-12-11 | Add PropertyInfo overload for GLOBAL_DEF | kobewi | |
2022-11-28 | Merge pull request #68874 from TokageItLab/fix-unique-path-keying | Rémi Verschelde | |
Added option to `get_path_to()` to get the shortest path considering unique name | |||
2022-11-24 | Merge pull request #68566 from Mickeon/node-print-orphans-static | Rémi Verschelde | |
Make `Node.print_orphan_nodes()` static | |||
2022-11-23 | Merge pull request #68568 from Mickeon/node-parent-busy-error | Rémi Verschelde | |
Update "Parent node is busy" errors to use `Callable.call_deferred()` | |||
2022-11-23 | Update "Parent node is busy" errors to use `Callable.call_deferred()` | Micky | |
Also fixes outdated method names in the messages. | |||
2022-11-19 | Add option to get_path_to() to get the shortest path with unique name | Silc Renew | |
2022-11-16 | Merge pull request #68709 from MewPurPur/instance-begone-part3 | Rémi Verschelde | |
Remove more instances of 'instance' being used as a verb | |||
2022-11-16 | Remove more instances of 'instance' being used as a verb | VolTer | |
2022-11-15 | Fix crash of queue_free() when main loop is not SceneTree | Haoyu Qiu | |
2022-11-14 | Merge pull request #68564 from Mickeon/node-no-remove-group-error | Rémi Verschelde | |
Strip ERR_FAIL from `Node.remove_from_group()` | |||
2022-11-14 | Remove redundant Variant-types initializations | Markus Sauermann | |
2022-11-13 | Strip ERR_FAIL from `Node.remove_from_group()` | Micky | |
Also simplifies group check removing unnecessary `!data.grouped.has` | |||
2022-11-12 | Make `Node.print_orphan_nodes()` static | Micky | |
2022-10-31 | Merge pull request #67578 from KoBeWi/GEDITOR | Rémi Verschelde | |
Unify usage of GLOBAL/EDITOR_GET | |||
2022-10-31 | Merge pull request #67445 from Zylann/rename_queue_delete | Rémi Verschelde | |
Rename queue_delete => queue_free | |||
2022-10-24 | Rename queue_delete => queue_free | Marc Gilleron | |
# Conflicts: # editor/plugins/tiles/tiles_editor_plugin.cpp | |||
2022-10-18 | Unify usage of GLOBAL/EDITOR_GET | kobewi | |
2022-10-16 | Fix get_path() error when calling get_node() | Haoyu Qiu | |
2022-10-14 | Rename pos -> index on Node | Miguel Gonzalez Sanchez | |
2022-10-10 | Fix node name casing issues | kobewi | |
Co-authored-by: ryburnj <jordanryburn@gmail.com> | |||
2022-10-07 | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵ | bruvzg | |
change warnings=all to use /W4. | |||
2022-10-03 | Unix: Remove now unnecessary I/O defines, cleanup | Rémi Verschelde | |
- `LIBC_FILEIO_ENABLED` wasn't defined anywhere, even in _other platforms_. - `NO_NETWORK` is also never defined. It probably isn't enough anyway to disable network APIs in the current codebase. - `UNIX_SOCKET_UNAVAILABLE` is never defined in this code but used by some other platforms, clarify that. - `NO_STATVFS` can be removed as Android supports it since API level 19, which is our current min SDK level. It's also only used for `DirAccessUnix::get_space_left()` which is anyway overridden by `DirAccessJAndroid::get_space_left()` so it shouldn't make a difference. * Fixed documentation for `DirAccess.get_space_left()`. - `NO_FCNTL` is likely also a remnant of early Android days, in current NDK r23 it seems to be available. Also cleaned up unused `fcntl.h` includes. - `NO_ALLOCA` is never defined, and we use alloca in many places now. | |||
2022-09-19 | Change return type of `get_configuration_warnings` to `PackedStringArray` | Marc Gilleron | |
2022-09-10 | Merge pull request #65595 from KoBeWi/minus_children | Rémi Verschelde | |
Allow negative indices in `move_child()` | |||
2022-09-10 | Allow negative indices in move_child() | kobewi | |
2022-09-09 | Remove Remove and Skip | VolTer | |
2022-09-08 | Merge pull request #60108 from KoBeWi/arise_to_top | Rémi Verschelde | |
Rename raise() to move_to_front() | |||
2022-09-07 | Rename `legible_unique_name` param to `force_readable_name` | Micky | |
With the introduction of Scene Unique Nodes, `is_unique_in_owner`, "Unique Name in Scene" and other descriptions related to the feature, the second parameter of add_child() and add_simbling() could be misunderstood to be related, at first glance. | |||
2022-09-06 | Rename raise() to move_to_front() | kobewi | |
2022-08-30 | Merge pull request #63902 from dalexeev/string-cases | Rémi Verschelde | |
2022-08-30 | Merge pull request #64410 from MewPurPur/rename-notification-instanced | Rémi Verschelde | |
2022-08-30 | Add `String.to_{camel,pascal,snake}_case` methods | Danil Alexeev | |
2022-08-26 | Merge pull request #64570 from KoBeWi/node🧳ing | Rémi Verschelde | |
Unify node casing adjustment | |||
2022-08-23 | Replace Array return types with TypedArray 2 | kobewi | |
2022-08-18 | Unify node casing adjustment | kobewi | |
2022-08-16 | Add methods for node reparenting | Tomasz Chabora | |
2022-08-16 | Rename NOTIFICATION_INSTANCED to NOTIFICATION_SCENE_INSTANTIATED | VolTer | |
2022-08-02 | move rpc and rpc_id implementations back to header | Nathan Franke | |
StackOverflow on why this is needed: https://stackoverflow.com/questions/495021/why-can-templates-only-be-implemented-in-the-header-file Minor mistake in commit ca7d572908c58c587214b8f65bdd4078d0185ab2 | |||
2022-07-29 | Remove Signal connect binds | Juan Linietsky | |
Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind() |