skill setting UI 작업 2차

This commit is contained in:
aube.lee
2025-02-10 21:22:23 +09:00
parent eafeb0cbd7
commit 21a173864f
11 changed files with 699 additions and 464 deletions

View File

@@ -0,0 +1,21 @@
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);
}
}
}