↧
Answer by Eric5h5
Just use the .enabled property (if it exists for that component). GetComponent(Blah).enabled = true.
View ArticleAnswer by DDelapena
just get the component from the gameObject and then set ".enabled" to true or false. on some kind of trigger event it could be like this: var component : nameOfComponent = collision.GetComponent(...
View Article