标签: c# unity3d
我想知道是否有办法检查当前场景是否以" 3开始。"。我有几个带有自己场景的游戏模式。 Gamemode 1场景以" 1开头。" (例如,1.1,1.2,1.3)。现在我想通过说if(CurrentScene starts with "3.")来检查场景是否正在使用游戏模式3。我该怎么做?
if(CurrentScene starts with "3.")
答案 0 :(得分:4)
if( SceneManager.GetActiveScene().name.StartsWith("3.") )