Answers for "unity having virtual start"

C#
0

unity having virtual start

// There is not built in way for having start as virtual.
// Use a custom function inside of the latest start function
public void VStart()
{
	// first start method
}

public void Start()
{
	VStart();
	// second start method
}
Posted by: Guest on March-25-2022

Code answers related to "unity having virtual start"

C# Answers by Framework

Browse Popular Code Answers by Language