Spawning actor in a specific layer
madmassey
Member Posts: 55
Is there a good way to spawn a new object into a different layer than the object that spawned it? I have an actor that needs to appear on top of the UI layer, but the object that spawns it needs to be behind the UI layer.
Comments
You could use an actor on the UI to spawn it...make a rule in the object behind the UI layer something like game.spawn = true then in one of the actors on top of the UI layer do if game.spawn = true spawn actor...
Darren.