Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add link to notification docs in SceneTree docs | Thad Guidry | 2024-07-26 | 1 | -1/+1 |
| | |||||
* | Fixed Timestep Interpolation (2D) | Ricardo Buring | 2024-03-23 | 1 | -0/+4 |
| | | | | | | | 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> | ||||
* | Overhaul some "uncommon" wording in class reference | Micky | 2024-03-01 | 1 | -1/+1 |
| | |||||
* | Tweak SceneTree Documentation | Micky | 2024-02-26 | 1 | -60/+62 |
| | |||||
* | Merge pull request #78206 from alula/node-count-in-group | Yuri Sizov | 2023-12-14 | 1 | -0/+7 |
|\ | | | | | | | Add SceneTree.get_node_count_in_group() | ||||
| * | Add SceneTree.get_node_count_in_group() | Alula | 2023-06-14 | 1 | -0/+7 |
| | | |||||
* | | Enhance SceneTree.change_scene*() methods' docs | Pedro J. Estébanez | 2023-11-24 | 1 | -2/+5 |
| | | |||||
* | | Disallow nested custom multiplayers in `SceneTree` | A Thousand Ships | 2023-09-25 | 1 | -3/+2 |
| | | | | | | | | Enables clearing the custom multiplayer | ||||
* | | Add a note about create_tween() method of SceneTree class | Mateus Elias | 2023-08-31 | 1 | -0/+1 |
| | | | | | | | | | | | | Add note regarding SceneTree.create_tween() method behavior. Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Tomek <kobewi4e@gmail.com> | ||||
* | | Clarify existence of groups | kobewi | 2023-08-16 | 1 | -0/+1 |
| | | |||||
* | | Clarify SceneTree.current_scene functionality | AttackButton | 2023-08-07 | 1 | -1/+2 |
| | | |||||
* | | Merge pull request #78988 from RandomShaper/fix_change_scene | Yuri Sizov | 2023-07-26 | 1 | -2/+2 |
|\ \ | | | | | | | | | | Reimplement scene change | ||||
| * | | Reimplement scene change | Pedro J. Estébanez | 2023-07-04 | 1 | -2/+2 |
| | | | |||||
* | | | Doctool: Remove version attribute from XML header | Rémi Verschelde | 2023-07-06 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb). | ||||
* | | | Bump version to 4.2-dev | Rémi Verschelde | 2023-07-05 | 1 | -1/+1 |
|/ / | | | | | | | Keep on waitin' | ||||
* | | Clarify restrictions on nested `MultiplayerAPI` in `SceneTree` | Ninni Pipping | 2023-06-25 | 1 | -0/+2 |
| | | |||||
* | | Merge pull request #77688 from L4Vo5/clarify-deferred | Rémi Verschelde | 2023-06-22 | 1 | -10/+10 |
|\ \ | | | | | | | | | | Clear up misconceptions about when deferred things run in the docs | ||||
| * | | clarify the meaning of "deferred" | L4Vo5 | 2023-06-18 | 1 | -10/+10 |
| |/ | |||||
* | | Clarify when things with _IDLE and _PHYSICS enums will run | L4Vo5 | 2023-06-20 | 1 | -0/+1 |
| | | |||||
* | | doc: Clarify description of `SceneTree.create_timer()` | biswas08433 | 2023-06-15 | 1 | -1/+1 |
|/ | | | | Added the 'emit' and the 'signal' word to the 'create_timer()' method description, regarding timer behavior. | ||||
* | Validate code tags in documentation for potential params | Yuri Sizov | 2023-04-26 | 1 | -3/+3 |
| | | | | | | | Adds a check to make_rst to look for matches between the text inside of the [code][/code] tag and known param identifiers. Fixes most of what was revealed. | ||||
* | Exposing more project settings for documentation | Ninni Pipping | 2023-03-15 | 1 | -2/+2 |
| | |||||
* | Discourage reusing Tweens | kobewi | 2023-03-04 | 1 | -1/+1 |
| | |||||
* | Bump version to 4.1-dev | Rémi Verschelde | 2023-03-01 | 1 | -1/+1 |
| | | | | Can't stop, won't stop, they said, huh? | ||||
* | Fix C# examples in documentation | Raul Santos | 2023-01-31 | 1 | -2/+2 |
| | | | | | | | | | | - Fix documentation after C# renames. - Add missing `partial` in C# class declarations. - Change `delta` parameter type to `double` in C#. - Ensure parameters match base declaration. - Use `$` string interpolation in C#. - Fix invalid or outdated C# code. - Changed some examples to follow our style guide more closely. | ||||
* | Add SceneTree.unload_current_scene() | Juan Linietsky | 2023-01-10 | 1 | -3/+9 |
| | | | | | | | 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. | ||||
* | Add note about GROUP_CALL_UNIQUE not considering arguments | Haoyu Qiu | 2022-12-04 | 1 | -0/+1 |
| | |||||
* | Rename change_scene() and change_scene_to() | Jason Yundt | 2022-09-07 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | | 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. | ||||
* | Some improvements to the SceneTreeTimer | Xwdit | 2022-09-03 | 1 | -1/+6 |
| | |||||
* | Replace Array return types with TypedArray 2 | kobewi | 2022-08-23 | 1 | -2/+2 |
| | |||||
* | Document run-time SceneTree debug property changes not working correctly | Hugo Locurcio | 2022-08-14 | 1 | -0/+3 |
| | |||||
* | [doc] Use "param" instead of "code" to refer to parameters #3 | Andy Maloney | 2022-08-09 | 1 | -15/+15 |
| | |||||
* | Rename the argument tag to param in XML documentation | Yuri Sizov | 2022-08-08 | 1 | -33/+33 |
| | |||||
* | Remove outdated line in call_group() description | kobewi | 2022-07-10 | 1 | -4/+2 |
| | |||||
* | Add Path2D/3D debug options | smix8 | 2022-06-20 | 1 | -0/+3 |
| | | | | Add Path2D/3D debug options. | ||||
* | Make auto_accept_quit and quit_on_go_back properties | Haoyu Qiu | 2022-05-14 | 1 | -16/+8 |
| | |||||
* | Make `{call,set,notify}_group()` immediate by default | Hugo Locurcio | 2022-05-05 | 1 | -7/+12 |
| | | | | | | | This results in less surprising behavior out of the box. Internal usages were modified to keep the existing behavior identical there. | ||||
* | Small improvements to get_first_node_in_group() | kobewi | 2022-04-29 | 1 | -0/+1 |
| | |||||
* | [Net] Allow branch-specific MultiplayerAPIs. | Fabio Alessandrelli | 2022-04-26 | 1 | -3/+15 |
| | | | | | | | | | 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. | ||||
* | Make vararg method bind no return and return | Pierre-Thomas Meisels | 2022-03-30 | 1 | -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 files_dropped signal from SceneTree | Igor Kordiukiewicz | 2022-02-28 | 1 | -7/+0 |
| | |||||
* | Add an XML schema for documentation | Hugo Locurcio | 2022-02-15 | 1 | -1/+1 |
| | | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions. | ||||
* | Replace Godot docs URL with `$DOCS_URL` in XML class reference | Rémi Verschelde | 2021-11-15 | 1 | -2/+2 |
| | |||||
* | Replace remaining usages of yield with new await keyword | Duroxxigar | 2021-10-22 | 1 | -1/+1 |
| | |||||
* | Document null argument limitation with `SceneTree.call_group()` | Hugo Locurcio | 2021-10-07 | 1 | -1/+4 |
| | |||||
* | doc: Update links to latest documentation after content reorganization | Rémi Verschelde | 2021-10-06 | 1 | -2/+2 |
| | |||||
* | Improve call_group documentation | kobewi | 2021-09-16 | 1 | -2/+4 |
| | |||||
* | Merge pull request #50207 from SirQuartz/patch-17 | Max Hilbrunner | 2021-09-15 | 1 | -1/+1 |
|\ | | | | | Add note to `SceneTree` about pausing | ||||
| * | Add note to `SceneTree` about pausing | Nick Huelin | 2021-07-06 | 1 | -1/+1 |
| | | | | | | | | | | | | | | This pull request adds a small amendment to `SceneTree` describing the behavior `_physics_process()` when pausing the scene. `_physics_process` will completely stop processing collisions and signals whenever the scene is paused, however, the function will still receive calls. This addresses: #47326 | ||||
* | | Docs: Remove references to (removed) RSETs | Max Hilbrunner | 2021-09-08 | 1 | -1/+1 |
| | |