Background: I have two objects let’s call them, A and B, and A is a prefab which instantiates in run time, and B is a prefab too but it exist in every scene from the start. (this information probably won’t make a difference in the answer, but I want to be thorough).
Question I want to access B from A, I could make a public instance of B and access it from A, or I could use FindObjectOfType() method in A, to find B. Which one is better, and more professional for the long run?
Thank you in advance!