Home › Per Godot docs (Physics), the difference between…
Per Godot docs (Physics), the difference between a RigidBody and a KinematicBody (CharacterBody in Godot 4) is which?
ARigidBody is 2D only and Kinematic is 3D only
BBoth bodies are identical in actual behaviour
CRigidBody renders sprites and Kinematic does not
DRigidBody is forces-driven; Kinematic is script-driven
Answer & Solution
Correct answer: D. RigidBody is forces-driven; Kinematic is script-driven
Godot docs (Physics Introduction): RigidBody respects forces/torque; KinematicBody (CharacterBody2D/3D) is moved directly by script with collision.
Related questions
Per Godot + Unity docs, the standard handedness of the world coordinate system is most comIn 2D game physics libraries, the canonical open-source choice (used by Cocos2D, Godot 2D,In commercial game engines, the underlying RIGID-BODY physics engine in Unity is which?Per Unity Manual, the equivalent of Godot's _process for per-frame logic in Unity is whichPer Godot docs, the Godot mechanism that decouples a publisher and subscriber for events iPer Godot docs, the per-frame UPDATE callback is `_process(delta)` and the per-physics-ticPer Unity Manual, the equivalent organising structure in Unity is which?Per Godot docs, the architecture of a Godot game is organised as which structure?