Is it possible to have an Arcade Physics body without a game object?

I need some simple invisible static bodies in my game, but I’m wondering if it’s possible to make the bodies without going through making an image or a sprite. Is that possible? I know I can just set visible to false if it’s not possible, but I’m curious…

You can use a dummy game object:

https://codepen.io/samme/pen/NZrrvZ

Or you could just use a Zone instead.

1 Like

Totally forgot about zones. Thanks!