Hello. if I instantiate an object, how can I check to see if that object is destroyed? Thanks
Just check for null…
bool isDestroyed = (myObject == null);
Hello. if I instantiate an object, how can I check to see if that object is destroyed? Thanks
Just check for null…
bool isDestroyed = (myObject == null);