↧
Answer by jenci1990
you can't find inactive object. Use static variabe: public static GameObject smokeDoor;
View ArticleAnswer by Dave-Carlile
Your `Find` call isn't finding `SmokeDoor`. Either because it doesn't exist, or it's already inactive. `Find` won't find an object that isn't already active. Since you already know what object you want...
View Article