Unity的C#編程教程_24_Else-If條件語句
- 2020 年 8 月 9 日
- AI
- C/C++/C#
- 多重條件的判斷
- 假設選擇不同難度等級的遊戲
- 選擇之後彈出對應的難度提示
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class player : MonoBehaviour
{
public int easyLevel = 0;
public int mediumLevel = 1;
public int hardLevel = 2;
// 3 個不同等級難度
public int chooseLevel;
// 用於存儲選擇的難度
// Start is called before the first frame update
void Start()
{
// 在 unity中選擇一個難度
if (chooseLevel == easyLevel) // 判斷選擇了簡單模式
{
Debug.Log("Easy level is runing!");
// 彈出提示:簡單模式正在運行
}
else if (chooseLevel == mediumLevel) // 第2層判斷
{
Debug.Log("Medium level is runing");
}
else if(chooseLevel == hardLevel) // 第3層判斷
{
Debug.Log("Hard level is runing!");
}
else
{
Debug.Log("You choose wrong level!");
// 選擇錯誤彈出提示
}
}
// Update is called once per frame
void Update()
{
}
}