Aimbot-ParallelEnv/Assets/Script/LevelButton.cs
Koha9 5226f1dbbf V3.2.2 开始创建MultiLevel
使用Multi level使AI适应更复杂环境
基本Level创建完成
UI逻辑创建中
2023-08-23 02:58:50 +09:00

13 lines
229 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LevelButton : MonoBehaviour
{
public int level;
public void Initialization(int level)
{
this.level = level;
}
}