Is there any way to add an object (a sprite with instance variables) without adding it to the layout ?
Let's say I want to add items to my game, do I really have to put every item I want to use on the layout ?
I'm creating a castlevania like, and my scene is a mess right now because I have 50+ unique items on my layout, and 50 different spells associated to the items. One of them is a homing missile that is spawned when I use the associated key, but since the missile is already on the layout, when you start the game the missile is already there and starts homing on a target before pressing any key.
I know I could do things differently, but adding objects to the layout just seems like a disorganized way of doing things