Answers for "delayed function unity"

0

delayed function unity

void start()
{
	Invoke("YourFun", 3F);//The function is called after 3 seconds
}

void YourFun()
{
	Debug.log("3 seconds later");
}
Posted by: Guest on January-20-2022

Browse Popular Code Answers by Language