call method from another script unity code example
Example 1: how to reference function in unity
public GameObject myObject; //make ref. in inspector window
myObject.GetComponent<MyScript>().MyFunction();
Example 2: unity call function from another script
public otherScript other;
void Update()
{
other.funtion();
}