버그 수정

This commit is contained in:
geondo55
2025-04-29 15:29:20 +09:00
parent 78c5e3b714
commit 87db23e37d
4 changed files with 569 additions and 6909 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -4685,7 +4685,7 @@ GameObject:
- component: {fileID: 974389862741149181}
- component: {fileID: 4055486073511783508}
m_Layer: 5
m_Name: Panel_TopBar
m_Name: Panel_Topbar
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0

View File

@@ -18,6 +18,7 @@ namespace XED.Command
public void Execute()
{
Debug.Log("Exit");
Application.Quit();
}
}

View File

@@ -5,11 +5,11 @@ namespace XED.UI
{
public class StudioCanvas_Static : CanvasBase
{
public StudioPanel_Topbar panel_topbar;
public StudioPanel_Topbar studiopanel_topbar;
public override void AfterAwake()
{
panel_topbar.onClickExit += () => CommandInvoker.instance.Invoke(new ExitProgramCommand());
//studiopanel_topbar.onClickExit += () => CommandInvoker.instance.Invoke(new ExitProgramCommand());
}
}
}