This code:
GameObject.Find("Dust(Clone)")
Finds my Dust.
How would I say, “NotFind” ?
This code:
GameObject.Find("Dust(Clone)")
Finds my Dust.
How would I say, “NotFind” ?
if ( !GameObject.Find ( “Dust(Clone)” ) )
{
// Code here
}
–TwisterK
Thanks!