feat(boot): 시작 시 MainMenu 대신 로비로 바로 진입 (MainMenu 일시 비활성) #78

Merged
gahusb merged 1 commits from feature/boot-to-lobby into main 2026-06-18 02:14:56 +09:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 8702d5209e - Show all commits

File diff suppressed because one or more lines are too long

View File

@@ -16,7 +16,9 @@ uiInit = _TimerService:SetTimerRepeat(function()
uiTries = uiTries + 1
if _EntityService:GetEntityByPath("/ui/DeckUIGroup") ~= nil then
self:ActivateUIGroups()
self:ShowMainMenu()
-- MainMenu는 한동안 비활성화: 시작 시 바로 로비로 진입.
-- 추후 싱글/멀티/종료 선택 메뉴가 필요하면 self:ShowMainMenu()로 되돌린다(메서드·UI 유지됨).
self:ShowLobby()
_TimerService:ClearTimer(uiInit)
elseif uiTries > 80 then
_TimerService:ClearTimer(uiInit)