summaryrefslogtreecommitdiffstats
path: root/doc/classes/AnimatableBody3D.xml
diff options
context:
space:
mode:
authorRicardo Buring <ricardo.buring@gmail.com>2022-10-24 19:07:26 +0200
committerRicardo Buring <ricardo.buring@gmail.com>2022-10-24 19:31:00 +0200
commit0e6b796cf6c6ffb01f3b3d4018843e298a7f4479 (patch)
tree1e6ee3168f396bbc9005fb9efe1060e26add740d /doc/classes/AnimatableBody3D.xml
parent767f8fb483851a210f170956e238e8b0cefa3834 (diff)
downloadredot-engine-0e6b796cf6c6ffb01f3b3d4018843e298a7f4479.tar.gz
Warn against using non-uniform scale for 3D physics
Using non-uniform scale is known to cause many issues. Add warnings to the editor and to the class reference. Also remove the warning from SoftBody3D since it is not relevant there: it simulates in global space.
Diffstat (limited to 'doc/classes/AnimatableBody3D.xml')
-rw-r--r--doc/classes/AnimatableBody3D.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/classes/AnimatableBody3D.xml b/doc/classes/AnimatableBody3D.xml
index 2a08c4c8f1..0733780bf7 100644
--- a/doc/classes/AnimatableBody3D.xml
+++ b/doc/classes/AnimatableBody3D.xml
@@ -7,6 +7,7 @@
Animatable body for 3D physics.
An animatable body can't be moved by external forces or contacts, but can be moved by script or animation to affect other bodies in its path. It is ideal for implementing moving objects in the environment, such as moving platforms or doors.
When the body is moved manually, either from code or from an [AnimationPlayer] (with [member AnimationPlayer.playback_process_mode] set to [code]physics[/code]), the physics will automatically compute an estimate of their linear and angular velocity. This makes them very useful for moving platforms or other AnimationPlayer-controlled objects (like a door, a bridge that opens, etc).
+ [b]Warning:[/b] With a non-uniform scale this node will probably not function as expected. Please make sure to keep its scale uniform (i.e. the same on all axes), and change the size(s) of its collision shape(s) instead.
</description>
<tutorials>
<link title="3D Physics Tests Demo">https://godotengine.org/asset-library/asset/675</link>