Hey, so I’m making a level-based game. For efficiency, instead of placing the actual game objects on each level, I’m using spawns for each object. Why? Because if I’ve made hundreds of levels, but all of a sudden I need to change the visual of a game object, well, yeah…
I wanted to create a framework that allows me to easily visualize levels as I map them out. What I decided to do was run Studio test mode, and create a small script that iterates over all the spawns and creates their corresponding game objects. It also handles it so when ever I move a spawn, the visualizer will position each game object on top of the spawn.
However, the one thing I can’t seem to find a workaround for, despite me locking the parts in the game object models, I can’t easily select the spawn underneath the game object model
Any ideas as to how I basically set the target filter of my mouse to be able to easily click on the spawns underneath the cloned models?
Thanks