skill setting UI 작업 2차
This commit is contained in:
@@ -8,18 +8,18 @@ namespace TON
|
||||
{
|
||||
PANEL_START,
|
||||
|
||||
TitleUI,
|
||||
CharaterCreateUI,
|
||||
TitleUI, // 게임 시작 화면 UI
|
||||
CharaterCreateUI, // 캐릭터 생성 UI
|
||||
CharaterSelectUI,
|
||||
IngameUI,
|
||||
ControllerUI,
|
||||
LobbyUI,
|
||||
LogUI,
|
||||
|
||||
|
||||
ControllerUI, // 캐릭터 컨트롤러 UI
|
||||
LobbyUI, // 게임 로비 UI
|
||||
SkillSettingUI, // 스킬 세팅 팝업 UI
|
||||
|
||||
|
||||
GameOverUI, // 게임 오버 시 노출되는 UI
|
||||
GameWinUI, // 게임 클리어 시 노출되는 UI
|
||||
PauseUI, // 일시중지 버튼 선택 시 노출되는 UI
|
||||
IngameUI, // 인게임 표시 UI
|
||||
IngameOptionUI, // 화면 우측 상단 골드, 인벤토리, 옵션 버튼 UI
|
||||
|
||||
|
||||
|
||||
19
Gameton-06/Assets/Gameton/Scripts/UI/SkillSettingUI.cs
Normal file
19
Gameton-06/Assets/Gameton/Scripts/UI/SkillSettingUI.cs
Normal 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()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
11
Gameton-06/Assets/Gameton/Scripts/UI/SkillSettingUI.cs.meta
Normal file
11
Gameton-06/Assets/Gameton/Scripts/UI/SkillSettingUI.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c6e661998b1a293438a43cb63d82bd7f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 19db9b1bf85c67042afc28005a6af101
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user