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,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace TON
{
public class SkillSettingUI : UIBase
{
public static SkillSettingUI Instance => UIManager.Singleton.GetUI<SkillSettingUI>(UIList.SkillSettingUI);
public List<SkillSettingUI_SkillSlot> slots;
public void Start()
{
}
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: c6e661998b1a293438a43cb63d82bd7f
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

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);
}
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 19db9b1bf85c67042afc28005a6af101
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: