I have multiple objects that I want gravity to be affected differently by, 1 group should be pulled to the roof the other should be pulled to the ground.
How would I go about doing this?
Develop games in your browser. Powerful, performant & highly capable.
Set world gravity to 0 and apply constant force to objects instead. For objects that should float up, apply force at angle 270. For objects that should fall down, apply it at angle 90.
Oh wonderful thank you dop!