Hey everyone I always face issue with prefabs in unity and how unity doesn’t allow me to override and apply all the changes to its other instances and this time I am facing kind of simple but weird issue where I have a MainMenu( a panel) prefab which has a button child object on it and another prefab SoundManager where I need that button child object reference so I can perform my logic like muting my sound and as I get the reference of the button child object from a local MainMenu prefab inside my hierarchy I couldn’t do the override/Apply all thing on my SoundManager prefab and I don’t think I can get the child object of my MainMenu prefab from prefab folder inside my project/assets so is there any solution where I can get the reference and still be able to apply it to all the other instances of my SoundManager prefab.
Like I could thing of few things like making the child object a separate prefab or instead of getting refrence in soundmanager I could shift my logic from soundmanager to the MainMenu and then get the button reference but is there any other solution without changing or doing something unnecessary like this
Please if u could enlighten me and help me
thanks a lot for your help.