我試圖比較場景名稱,但我收到以下錯誤:如何獲得並比較當前場景名稱
錯誤CS0019:運營商
==' cannot be applied to operands of type
方法組「和'串」
我無法弄清楚如何解決這個錯誤。請幫幫我!錯誤位於箭頭
void CheckCurrentLevel()
{
for(int i = 1; i < LevelAmount; i++)
{
---> if (SceneManager.LoadScene == "Level" + i) {
CurrentLevel = i;
SaveMyGame();
}
}
}
一個是方法,一個是'string' – Danh
請更新您的問題,以反映實際的** **回答您選擇,讓其他人誰遇到同樣的問題,因爲你找到了解決這個問題的方法。 – spender