Good day,
I’m creating instances of ScriptableObjects in the Editor and I’m adding them to an Array in a MonoBehaviour that resides on GOs.
Creating instances is fine, everything works as it should until I either Duplicate / Copy+Paste a GO containing them. Different from how Unity handles duplication of GO’s, the ScriptableObjects are not Cloned but just referenced into the new GO.
So changing the ScriptableObject on one of the duplicated GO changes it across all of its references in other GOs.
Because of that, I also cannot copy GO’s from one scene to another without loosing the ScriptableObjects they contain.
Any way to go arround this?