Answers for "how to call a function that other scripts can access in unity"

3

call function from another script unity

void Start()
{
    ClickToMove = FindObjectOfType<ClickToMoveScript>();
    ClickToMove.PlayWoodCuttingAnim();  
}
Posted by: Guest on April-23-2021
3

unity call function from another script

public otherScript other;

   void Update()
   {
     other.funtion();
   }
Posted by: Guest on June-03-2020
0

how to call a function that other scripts can access in unity

void Start()
{
  method.Add <function>().getMethodType("UnderMoved") = false;
}
Posted by: Guest on September-01-2021

Code answers related to "how to call a function that other scripts can access in unity"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language