Files
M-Gameton-06/Gameton-06/Assets/Gameton/Scripts/UI/SkillSettingUI_SkillSlot.cs
2025-02-10 21:22:23 +09:00

22 lines
404 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class SkillSettingUI_SkillSlot : MonoBehaviour
{
public GameObject lockerImage;
public void SelectedSlot()
{
lockerImage.SetActive(true);
}
public void UnselectedSlot()
{
lockerImage.SetActive(false);
}
}
}