Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

So to get projectiles and enemies to go around the planet, you must first understand orbital mechanics! /jk (only just a little bit)

I used Unity, and I know you use Godot so I dunno how well this will translate, but I tried to keep it simple. I made all objects physics-based (rigidbodies), and disabled their gravity. I then applied force every physics frame in the direction of the center of the planet at a constant force equivalent to 9.8 meters squared (Earth's gravity). And that's all there is to it for a simple orbiting effect! 

I could apply force in any other direction (like a bullet), and if that force ends up meeting or exceeding the downward force, it'll enter orbit. You can see this happen sometimes with the shotgun or gatling gun powerups due to random force being applied to their bullets. 

Thanks for the comment!

(+1)

Thanks for the write up! That translates perfectly to Godot :) I was thinking more of the geometry of the surface though, the player seems to dip into the "bumps" on the surface, or am I just hallucinating? Is that a complete mesh with collision shape?