summaryrefslogtreecommitdiffstats
path: root/scene/main/scene_tree.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-021-0/+3
|\
| * Add "Game" editor for better runtime debuggingMichael Alexsander2024-10-301-0/+3
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Add an additional input stage after physics pickingMarkus Sauermann2024-10-231-0/+1
| | | | | | | | | | | | Allow handling events, that were not used during physics picking. (cherry picked from commit d14035edccae40020226f3dced26969647e73a15)
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Fixed Timestep Interpolation (3D)Ricardo Buring2024-07-071-0/+16
| | | | | | | Adds 3D fixed timestep interpolation to the rendering server. This does not yet include support for multimeshes or particles. Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Expose is_part_of_edited_scene()kobewi2024-04-261-6/+0
|
* Remove some unused SceneTree propertiesBernat Arlandis2024-04-131-3/+0
|
* Fixed Timestep Interpolation (2D)Ricardo Buring2024-03-231-0/+7
| | | | | | | Adds fixed timestep interpolation to the rendering server (2D only). Switchable on and off with a project setting (default is off). Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Optimise Object's `get_argument_options`Micky2024-02-291-0/+2
|
* Merge pull request #78206 from alula/node-count-in-groupYuri Sizov2023-12-141-0/+1
|\ | | | | | | Add SceneTree.get_node_count_in_group()
| * Add SceneTree.get_node_count_in_group()Alula2023-06-141-0/+1
| |
* | Merge pull request #78988 from RandomShaper/fix_change_sceneYuri Sizov2023-07-261-1/+3
|\ \ | | | | | | | | | Reimplement scene change
| * | Reimplement scene changePedro J. Estébanez2023-07-041-1/+3
| | |
* | | Ensure that SceneTree is initialized and finalized at correct timeNickolai Korshunov2023-06-201-1/+0
|/ / | | | | | | SceneTree should be fully initialized before any tree operation with any node and finalized only after all nodes exited tree.
* | Remove SceneTree debug avoidance hintsmix82023-06-161-4/+0
| | | | | | | | Removes SceneTree debug avoidance hint.
* | Remove legacy navigation debug materialssmix82023-06-151-4/+0
|/ | | | Removes legacy navigation debug materials.
* Merge pull request #75901 from reduz/refactor-node-processingRémi Verschelde2023-05-101-5/+45
|\ | | | | | | Refactor Node Processing to allow Scene Multithreading
| * Refactor Node ProcessingJuan Linietsky2023-05-091-5/+45
| | | | | | | | | | | | | | | | | | | | * Node processing works on the concept of process groups. * A node group can be inherited, run on main thread, or a sub-thread. * Groups can be ordered. * Process priority is now present for physics. This is the first steps towards implementing https://github.com/godotengine/godot-proposals/issues/6424. No threading or thread guards exist yet in most of the scene code other than Node. That will have to be added later.
* | Rework Navigation Avoidancesmix82023-05-101-0/+4
|/ | | | Rework Navigation Avoidance.
* Add SceneTree.unload_current_scene()Juan Linietsky2023-01-101-0/+1
| | | | | | | Provides an obvious way to unload the currently loaded scene (which is nowhere to be found in the docs). The SceneTree.change_scene_to() method must now always provide a valid PackedScene. Fixes #63565.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | 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".
* Revert "`SceneTree` Fix storing removed nodes to be skipped by the group calls"Rémi Verschelde2022-11-271-1/+1
|
* `SceneTree` Fix storing removed nodes to be skipped by the group callskleonc2022-10-241-1/+1
|
* Change time parameters and variables to double typeDave Palais2022-09-261-2/+2
| | | | Addresses #65313
* Merge pull request #63596 from Jayman2000/issue-27640Rémi Verschelde2022-09-081-2/+2
|\ | | | | | | Rename `change_scene()` and `change_scene_to()`
| * Rename change_scene() and change_scene_to()Jason Yundt2022-09-071-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change, the SceneTree had methods named “change_scene” and “change_scene_to”. One of them accepted a String as a parameter and the other accepted a PackedScene, but you couldn’t tell which one was which just by looking at their names. This change renames those two methods to “change_scene_to_file” and “change_scene_to_packed”. These new names came from this suggestion [1]. These new names make the difference between the two methods more clear and hint at the fact that there’s more than one change_scene method. [1]: <https://github.com/godotengine/godot/issues/27640#issuecomment-1081870955> Fixes #27640.
* | Remove / Replace old Navigation Debug Visualizationsmix82022-09-071-8/+0
|/ | | | | - removes / replaces leftovers from old navigation debug code - cleanes SceneTree and ProjectSettings from old navigation debug
* Some improvements to the SceneTreeTimerXwdit2022-09-031-1/+6
|
* Replace Array return types with TypedArray 2kobewi2022-08-231-2/+2
|
* Set initial SceneTree processes times to 0.0Marcel Admiraal2022-07-171-2/+2
|
* Add Path2D/3D debug optionssmix82022-06-201-0/+17
| | | | Add Path2D/3D debug options.
* Add a new HashSet templatereduz2022-05-201-1/+1
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Merge pull request #61026 from timothyqiu/quit-propRémi Verschelde2022-05-201-0/+3
|\ | | | | Make `auto_accept_quit` and `quit_on_go_back` properties
| * Make auto_accept_quit and quit_on_go_back propertiesHaoyu Qiu2022-05-141-0/+3
| |
* | Replace most uses of Map by HashMapreduz2022-05-161-3/+7
|/ | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Make `{call,set,notify}_group()` immediate by defaultHugo Locurcio2022-05-051-3/+5
| | | | | | | This results in less surprising behavior out of the box. Internal usages were modified to keep the existing behavior identical there.
* [Net] Allow branch-specific MultiplayerAPIs.Fabio Alessandrelli2022-04-261-2/+3
| | | | | | | | | Removes custom_multiplayer from Node. MultiplayerAPI overrides are now set at SceneTree level, and apply to whole branches. Impact on performance when using only the default multiplayer or overriding it is minimal, the use of branches can likely be further optimized by caching nodes and relevant MultiplayerAPI IDs.
* [Input] Add extra `shortcut_input` input processing step to process Unicode ↵bruvzg2022-04-051-0/+1
| | | | character input with Alt / Ctrl modifiers, after processing of shortcuts.
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-2/+2
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Make vararg method bind no return and returnPierre-Thomas Meisels2022-03-301-2/+2
| | | | | | | | | | | | | | Type emit_signal exposed method return type set UndoRedo add_do_method and add_undo_method exposed return void Set TreeItem::_call_recursive_bind returns void Set _rpc_bind and _rpc_id_bind returns void in Node Set _call_group and _call_group_flags method returns void in SceneTree Set godot-cpp-test CI flag to false
* Remove VARIANT_ARG* macrosreduz2022-03-091-2/+21
| | | | | | | | * 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.
* Improve compilation speed (forward declarations/includes cleanup)Hendrik Brucker2022-02-121-2/+1
|
* [Net] New replication interface, spawner and synchronizer nodes.Fabio Alessandrelli2022-02-041-1/+1
| | | | | | | | | | | | | | | | | | Initial implementation of the MultiplayerReplicationInterface and its default implementation (SceneReplicationInterface). New MultiplayerSpawner node helps dealing with instantiation of scenes on remote peers (e.g. clients). It supports both custom spawns via a `_spawn_custom` virtual function, and optional auto-spawn of known scenes via a TypedArray<PackedScenes> property. New MultiplayerSynchornizer helps synchronizing states between the local and remote peers, supports both sync and spawn properties and is configured via a `SceneReplicationConfig` resource. It can also sync via path (i.e. without being spawned by a MultiplayerSpawner if both peers has it in tree, but will not send the spawn state in that case, only the sync one.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Remove unimplemented methodsMarcel Admiraal2021-10-211-4/+0
|
* [Net] Move multiplayer to core subdir, split RPCManager.Fabio Alessandrelli2021-09-071-1/+1
| | | | | | | | | | | Move multiplayer classes to "core/multiplayer" subdir. Move the RPCConfig and enums (TransferMode, RPCMode) to a separate file (multiplayer.h), and bind them to the global namespace. Move the RPC handling code to its own class (RPCManager). Renames "get_rpc_sender_id" to "get_remote_sender_id".
* Entirely removes BIND_VMETHOD in favor of GDVIRTUALreduz2021-08-231-1/+7
| | | | | | | | * `_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.
* Revert "Add Node processing and physics processing cumulative (as opposed to ↵Juan Linietsky2021-08-221-5/+0
| | | | delta) time"
* Add Node processing and physics processing cumulative (as opposed to delta) ↵Mohammad Khashashneh2021-08-171-0/+5
| | | | time.