Skip to content

Instantly share code, notes, and snippets.

@z3t0
Created July 4, 2016 00:47
Show Gist options
  • Save z3t0/541fd5e8695289ee0aadf7006cc8bc0d to your computer and use it in GitHub Desktop.
Save z3t0/541fd5e8695289ee0aadf7006cc8bc0d to your computer and use it in GitHub Desktop.
loader.destroyInstance = (object instance) => DestroyObject (instance);
public void DestroyObject(object instance) {
if (instance is Component)
Destroy (instance as Component);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment