Hi,
In my game there's tons of different objects, mostly different enemy types and their subobjects like particles and whatnot. What would be the most preferable way to prepare these objects for spawning in levels? So far I've had this seperate layout I call the "Stuff Board" where I simply put everything that's going to be manually spawned in the actual game. On that board I set up the object's behavior settings and such to what they should be. I've noticed that I can't change those numbers through the actual object list, so I was sorta forced to make this kind of messy stuff board. I'm not sure if this is the most optimal way to do this, though.
How do you guys manage your big piles of objects in your projects? I've heard that some people just put those objects outside the level layouts and remove them on the startup, but somehow that seems even messier to me. I could maybe use that for one-off things like bosses and level-specific effects, but not for "generic" stuff like enemies and objects that are found in every level.