I’ve seen people say moving a StaticBody3D node is bad for performance, does that mean I should use AnimatableBody3D if I have my node moving in global space? If that is the case, why is AnimatableBody3D inheriting from StaticBody3D?
yes use animatable body 3d if you want to move it from code. the static body 3d should never be moved. animatable body exist because ppl want to move static body
from the doc:
A 3D physics body that can’t be moved by external forces. When moved manually, it affects other bodies in its path.
When AnimatableBody3D is moved, its linear and angular velocity are estimated and used to affect other physics bodies in its path. This makes it useful for moving platforms, doors, and other moving objects.