diff options
author | Jummit <jummit@web.de> | 2019-11-01 10:37:39 +0100 |
---|---|---|
committer | Jummit <jummit@web.de> | 2019-11-01 10:37:39 +0100 |
commit | 2166437869f29a12faf8b667e47a76f11e5f3cc8 (patch) | |
tree | d0c20dc64e77847aa9476b524be90b3f4184d810 | |
parent | 02ca4c49fa3a089e48718b26276660895cdb0cf6 (diff) |
document force_update_transform
-rw-r--r-- | doc/classes/CanvasItem.xml | 1 | ||||
-rw-r--r-- | doc/classes/Spatial.xml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/CanvasItem.xml b/doc/classes/CanvasItem.xml index 87b8f5c83d..d1908284b0 100644 --- a/doc/classes/CanvasItem.xml +++ b/doc/classes/CanvasItem.xml @@ -341,6 +341,7 @@ <return type="void"> </return> <description> + 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_canvas" qualifiers="const"> diff --git a/doc/classes/Spatial.xml b/doc/classes/Spatial.xml index 09a5bf3b8f..eeeee1756a 100644 --- a/doc/classes/Spatial.xml +++ b/doc/classes/Spatial.xml @@ -15,6 +15,7 @@ <return type="void"> </return> <description> + 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"> |