Answers for "how to run a method in another script unity"

C#
3

call function from another script unity

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

Code answers related to "how to run a method in another script unity"

C# Answers by Framework

Browse Popular Code Answers by Language