skill setting UI 작업 2차
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user