Answers for "disable script unity"

2

unity deactive code from code

public MonoBehaviour script;

void Start()
{
script.enabled = false;
}
Posted by: Guest on April-10-2020
1

disable script in unity

GameObject.Find("Cube").GetComponent<MoveObject>().enabled = false;
Posted by: Guest on April-21-2021
0

how to turn off scrips in unity

this.enabled = false;
Posted by: Guest on August-07-2020

Code answers related to "disable script unity"

Browse Popular Code Answers by Language