| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Trying to change "Godot" to "Redot" in the doc while acknowledging the reference to previous Godot versions like Godot 3.X.
|
| |
|
|
|
|
|
|
|
| |
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>
|
| |
|
| |
|
|\
| |
| |
| | |
Add SceneTree.get_node_count_in_group()
|
| | |
|
| | |
|
| |
| |
| |
| | |
Enables clearing the custom multiplayer
|
| |
| |
| |
| |
| |
| | |
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>
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | | |
Reimplement scene change
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
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).
|
|/ /
| |
| |
| | |
Keep on waitin'
|
| | |
|
|\ \
| | |
| | |
| | | |
Clear up misconceptions about when deferred things run in the docs
|
| |/ |
|
| | |
|
|/
|
|
| |
Added the 'emit' and the 'signal' word to the 'create_timer()' method description, regarding timer behavior.
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
|
| |
Can't stop, won't stop, they said, huh?
|
|
|
|
|
|
|
|
|
|
| |
- 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.
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Add Path2D/3D debug options.
|
| |
|
|
|
|
|
|
|
| |
This results in less surprising behavior out of the box.
Internal usages were modified to keep the existing behavior
identical there.
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Add note to `SceneTree` about pausing
|
| |
| |
| |
| |
| |
| |
| | |
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
|