Hey there, I quick question.
If i disable script in Start() function like this.
void Start(){
GetComponent<MyScript>().enabled = false;
}
What exactly it disables. All update functions like Update(), OnGUI(), OnTriggerEnter/Exit, OnCollision and all others, or just specific ones, thanks.