コード例 #1
0
    private void GoToTheSetupScene()
    {
        try
        {
            var sceneName = GameDataController.GetCurrentSceneName();

            SceneManager.LoadScene(sceneName);
        }
        catch (Exception e)
        {
            throw new Exception("Failed to GoToTheSetupScene.", e);
        }
    }