mirror of
https://github.com/godotengine/godot.git
synced 2025-10-29 12:44:31 +00:00
Merge pull request #31925 from bojidar-bg/31855-overriden-properties-docs
Add overriden properties to the documentation
This commit is contained in:
commit
2f52d73c21
112 changed files with 310 additions and 56 deletions
|
|
@ -4061,7 +4061,10 @@ void _update_all_gizmos(Node *p_node) {
|
|||
}
|
||||
|
||||
void SpatialEditor::update_all_gizmos(Node *p_node) {
|
||||
if (!p_node) p_node = SceneTree::get_singleton()->get_root();
|
||||
if (!p_node) {
|
||||
if (!SceneTree::get_singleton()) return;
|
||||
p_node = SceneTree::get_singleton()->get_root();
|
||||
}
|
||||
_update_all_gizmos(p_node);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue