fix home button

This commit is contained in:
XR
2026-02-10 00:44:25 +09:00
parent 3408250a13
commit ce845c73bf

View File

@@ -7,6 +7,7 @@ using UVC.UI.Toolbar.Model;
using UVC.UI.ToolBar;
using OCTOPUS_TWIN.UI;
using HyundaiWIA.Command;
using UnityEngine.SceneManagement;
namespace HyundaiWIA.UI
{
@@ -57,10 +58,9 @@ namespace HyundaiWIA.UI
"설정 창을 엽니다.");
//홈 화면 돌아가기
toolbarModel.AddStandardButton("홈 화면 돌아가기",
toolbarModel.AddStandardButton("홈 화면 돌아가기",
$"{ResourceURL.uiSpriteFolderPath}TopToolBar/IMG_Exit",
new ActionCommand(() => Debug.Log("홈 화면 돌아가기")),
"홈 화면 돌아가기 창을 엽니다.");
new ActionCommand(() => SceneManager.LoadScene("SystemScene")));
topToolBox.SetData(toolbarModel);
topToolBox.Initialize();