0 votes

My project uses a RigidBody with a sphere and I want to set the max speed, the RigidBody can go.

rigidbody.linear_velocity.length()
Godot version v3.3.2
in Engine by (46 points)

1 Answer

0 votes

Hi.
For that you have to integrate a integrateforces ( PhysicsDirectBodyState state ) function to your RigidBody. Then you have to modify the PhysicsDirectBodyState.linear_velocity to limit the speed. Like so .. (did not test)

var len = min(max_speed, state.linear_velocity.length())
state.linear_velocity = state.linear_velocity.normalize() * len

https://docs.godotengine.org/de/stable/classes/class_rigidbody.html#class-rigidbody-method-integrate-forces

by (4,084 points)
Welcome to Godot Engine Q&A, where you can ask questions and receive answers from other members of the community.

Please make sure to read Frequently asked questions and How to use this Q&A? before posting your first questions.
Social login is currently unavailable. If you've previously logged in with a Facebook or GitHub account, use the I forgot my password link in the login box to set a password for your account. If you still can't access your account, send an email to [email protected] with your username.