I’m trying to create a prefab of prefabs without losing all the connections.
Let me elaborate:
I have a barrel that is a mesh and some scripts assigned. So I create a prefab of it so I can place it throughout my levels easily.
I decide sometimes I want a group of stacked barrels sometimes instead of just one. So I create an empty game object that has 4 children that are my original barrel so I can easily place stacks of barrels throughout my levels.
However once I make a prefab of this empty game object I lose all the connection between the original barrel and the child barrel. This isn’t ideal as I’d still like the barrel children to be ‘barrels’ so if I add a script or change a value in the original I’d like any barrel anywhere to take this data… however since I’ve lost the link between the orignal this doesn’t happen.
Is there a better way to do this?