↧
Answer by Lemon
Just had a similar problem. You are correct in assuming that this happens because a deep copy was not performed. You can force the deep copy yourself:panel.renderer.material = Instantiate...
View ArticleAnswer by ScottFromDerby
If anyone has this problem with materials being shared by default, this might help: void Awake() { Text t = GetComponentInChildren(); // Ensure that this material is NOT the shared one!!! Material m =...
View Article