Files
gold_dolphin/unity/Assets/Script/GameObject/LevelUp.cs
2026-06-20 19:35:25 +08:00

12 lines
227 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class LevelUp : MonoBehaviour
{
private void OnTriggerEnter(Collider other)
{
UIManager.Instance.Show<UILevelUp>();
}
}