I have a projectile fired by a sprite that I am looking to have destroyed when overlapping any object that has a solid behavior as opposed to naming each object one by one but I can not figure out how.
Thank you.
Develop games in your browser. Powerful, performant & highly capable.
one way would be to put all the objects you want the sprite to react to into a family - then you can just run an event along the lines of :
sprite overlapping family ? destry sprite
Thank you very much!