대표 캐릭터 변경하고 "확인" 버튼을 눌러 로비로 복귀할 때 로비 화면의 캐릭터가 방금 선택한 캐릭터로 바뀌도록 변경 바랍니다. (유저 혼란 초래)

This commit is contained in:
Ino 2025-11-07 13:53:54 +09:00
parent 8a6bd45caa
commit fafed1ea32
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ public class AlbumCard : CardBase
SaveMgr.Ins.Open_Image();
SaveMgr.Ins.Save();
LobbyUI.Ins.m_LobbyCenterProfileUI.Set();
LobbyUI.Ins.m_LobbyCenterProfileUI.Set(false);
LobbyUI.Ins.m_AlbumUI.Set_UI();
LobbyUI.Ins.m_ToastUI.Set("열린 앨범을 감상해 보세요.");
}

View File

@ -17,9 +17,9 @@ public class LobbyCenterProfileUI : MonoBehaviour
float animDuration = 0.3f;
public void Set()
public void Set(bool setservergirl = true)
{
if (curGirl == 0) curGirl = SaveMgr.Ins.Get_SelectGirlID();
if (curGirl == 0 || setservergirl) curGirl = SaveMgr.Ins.Get_SelectGirlID();
var pre_girl = curGirl - 1;
if (pre_girl <= 0) pre_girl = 8;