Overloads
Overloaded commands
[Command]
public static void LoadScene(string name)
{
SceneManager.LoadScene(name);
}
[Command]
public static void LoadScene(int buildIndex)
{
SceneManager.LoadScene(buildIndex);
}Last updated