GameHandler.LoadScene C# (CSharp) 메소드

LoadScene() 공개 정적인 메소드

public static LoadScene ( string sceneName ) : void
sceneName string
리턴 void
    public static void LoadScene(string sceneName)
    {
        GameHandler.GetLevelHandler().interactionList = new ArrayList();
        GameHandler.Party().DestroyInstances();
        Application.LoadLevel(sceneName);
    }

Usage Example

 public void LoadButton()
 {
     Game.LoadScene();
 }
GameHandler