StageEntry UI 추가
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7d40ec813cee0e14f9751bed0799ae06
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -22,6 +22,7 @@ namespace TON
|
||||
POPUP_START,
|
||||
PausePopupUI,
|
||||
LoadingUI,
|
||||
StageEntryUI,
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -8,7 +8,8 @@ namespace TON
|
||||
{
|
||||
public void OnClickStageEntryButton()
|
||||
{
|
||||
Debug.Log("StageEntry");
|
||||
UIManager.Hide<LobbyUI>(UIList.LobbyUI);
|
||||
UIManager.Show<StageEntryUI>(UIList.StageEntryUI);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
15
Gameton-06/Assets/Gameton/Scripts/UI/StageEntryUI.cs
Normal file
15
Gameton-06/Assets/Gameton/Scripts/UI/StageEntryUI.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace TON
|
||||
{
|
||||
public class StageEntryUI : UIBase
|
||||
{
|
||||
public void OnClickBackButton()
|
||||
{
|
||||
UIManager.Show<LobbyUI>(UIList.LobbyUI);
|
||||
UIManager.Hide<StageEntryUI>(UIList.StageEntryUI);
|
||||
}
|
||||
}
|
||||
}
|
||||
11
Gameton-06/Assets/Gameton/Scripts/UI/StageEntryUI.cs.meta
Normal file
11
Gameton-06/Assets/Gameton/Scripts/UI/StageEntryUI.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c9138cc62a0b4a347a46191cfb0fd7ef
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user