diff options
author | jfons <joan.fonssanchez@gmail.com> | 2021-06-09 13:06:38 +0200 |
---|---|---|
committer | jfons <joan.fonssanchez@gmail.com> | 2021-06-14 14:05:13 +0200 |
commit | ee702334a1c7bd19dd8fd7fd57009e393939bab7 (patch) | |
tree | cf4e0ece2f10a1c0d5f89d6e1d0e532406fefc6e /doc/classes/Node3D.xml | |
parent | f178e7abd7d0af21d326f2e818bcd07a487b19fe (diff) | |
download | redot-engine-ee702334a1c7bd19dd8fd7fd57009e393939bab7.tar.gz |
Rename get_parent_spatial() to get_parent_node3d()
Renames get_parent_spatial() to get_parent_node3d() and changes its
implementation. Before it was not returning a correct pointer if the
node wasn't added to a SceneTree. Now it uses the same implementation as
CanvasItem, which will be correct even for nodes outside a SceneTree.
Diffstat (limited to 'doc/classes/Node3D.xml')
-rw-r--r-- | doc/classes/Node3D.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Node3D.xml b/doc/classes/Node3D.xml index a6237708c6..a94cc37bc8 100644 --- a/doc/classes/Node3D.xml +++ b/doc/classes/Node3D.xml @@ -20,7 +20,7 @@ Forces the transform to update. Transform changes in physics are not instant for performance reasons. Transforms are accumulated and then set. Use this if you need an up-to-date transform when doing physics operations. </description> </method> - <method name="get_parent_spatial" qualifiers="const"> + <method name="get_parent_node_3d" qualifiers="const"> <return type="Node3D"> </return> <description> |