summaryrefslogtreecommitdiffstats
path: root/doc/classes/CharacterBody3D.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-01-03 12:39:35 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-01-03 12:39:35 +0100
commit151e1355e80f0044042992bb8a4a4f33ccc1e41b (patch)
tree8b46014c83436dcd9ab91d6493a921ea2a125e02 /doc/classes/CharacterBody3D.xml
parent7e2209308977372ce9ab649367b007de863b0f44 (diff)
parent3f9db7b398bd18248c486297ad8bdc7b38eed3ed (diff)
downloadredot-engine-151e1355e80f0044042992bb8a4a4f33ccc1e41b.tar.gz
Merge pull request #63650 from fabriceci/apply-moving-platform-angular-velocity
Allow to apply the angular velocity of a moving platform
Diffstat (limited to 'doc/classes/CharacterBody3D.xml')
-rw-r--r--doc/classes/CharacterBody3D.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/classes/CharacterBody3D.xml b/doc/classes/CharacterBody3D.xml
index 309e2231a4..821117122c 100644
--- a/doc/classes/CharacterBody3D.xml
+++ b/doc/classes/CharacterBody3D.xml
@@ -41,10 +41,16 @@
Returns a [KinematicCollision3D], which contains information about the latest collision that occurred during the last call to [method move_and_slide].
</description>
</method>
+ <method name="get_platform_angular_velocity" qualifiers="const">
+ <return type="Vector3" />
+ <description>
+ Returns the angular velocity of the platform at the last collision point. Only valid after calling [method move_and_slide].
+ </description>
+ </method>
<method name="get_platform_velocity" qualifiers="const">
<return type="Vector3" />
<description>
- Returns the linear velocity of the floor at the last collision point. Only valid after calling [method move_and_slide] and when [method is_on_floor] returns [code]true[/code].
+ Returns the linear velocity of the platform at the last collision point. Only valid after calling [method move_and_slide].
</description>
</method>
<method name="get_position_delta" qualifiers="const">