RigidBody works as KinematicBody. Why???

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By GodlyGladius

I have encountered many people suggesting me to use kinematicbody instead of rigidbody, even though rigidbody has built in physics. And as the title suggests, you can turn rigidbody into kinematicbody anyway. So what’s the pros and cons of these 2?

:bust_in_silhouette: Reply From: SteveSmith

A RigidBody moves by itself based on physics forces. A Kinematic body is normally only moved manually (e.g. move_and_slide()), but can still collide with Rigid/Static bodies.

:bust_in_silhouette: Reply From: stormreaver

It’s a tradeoff between degrees of control. KinematicBody is easier to control, while RigidBody participates in the built-in physics but is much harder to control accurately.

If you want more control, use KinematicBody. If you don’t need much control, and want Godot’s physics capabilities, use RigidBody.