Answers for "call a function unity"

C#
3

call function from another script unity

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

how to make a function unity c#

Void Start()
{
  //call a void function (will return nothing/null)
  MyVoidFunction(false);
  debug.log(MyIntFunction(7));
}

Void MyVoidFunction(bool n)
{
  if(n)
  debug.log("Void Function Ran, n is true")
  if(!n)
  debug.log("Void Function Ran, n is false")
  //if you get an error here do
  //return;
}
int MyIntFunction(float x)
{
 return x * 2; 
}
Posted by: Guest on November-18-2020

Code answers related to "call a function unity"

C# Answers by Framework

Browse Popular Code Answers by Language