关卡1流程实现(测试版)

This commit is contained in:
xinkl
2025-11-09 18:00:06 +08:00
parent ac4d6536f2
commit b88b2ac834
405 changed files with 1442 additions and 523 deletions

View File

@@ -22,10 +22,12 @@ public class GameFlowMgr : Singleton<GameFlowMgr>
{
throw new System.Exception("请选择关卡");
}
Debug.Log(levelData.levels[levelData.currentLevelIndex].sceneName);
StageSelector.EnterStage(levelData.levels[levelData.currentLevelIndex].sceneName);
}
public void completeLevel(int index)
{
levelData.currentLevelIndex = ++index;
StageSelector.EnterStage("Stage1");
}
}