Aimbot-ParallelEnv/Assets/Script/LevelButton.cs
Koha9 203407693c V3.3.0 MultiLevel功能创建完成
MultiLevel功能创建完成,play模式基本功能适配结束。下次再也不隔这么久commit一次了:(
2023-09-08 07:15:49 +09:00

16 lines
334 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
public class LevelButton : MonoBehaviour
{
public int level;
public TextMeshProUGUI levelText;
public void Initialization(int level)
{
this.level = level;
levelText.text = "Level " + level.ToString();
}
}