Gravity Scale Zero or Kinematic?

I have objects that follow nodes, but only need gravity when they need to fall.

What is the best option, performance wise: (mobiles)
-Gravity Scale = 0 then change it to 1 when needed
-Kinematic = true then change to false when needed

Thanks in advance! :slight_smile:

Kinematic, absolutely. Kinematic turns off gravity and also allows the rigidbody to be directly moved through any means. It’s the proper way to do this.