This commit is contained in:
2026-06-04 17:10:40 +08:00
parent 8f482df1d5
commit 671ca265ed
30 changed files with 323 additions and 58 deletions
@@ -59,4 +59,5 @@ public static class CsjInfoC
public static readonly uint WorldRaycast_EnableChange = ++Cursor_BASE;
public static readonly uint LoginInit = ++Cursor_BASE;
public static readonly uint Show_uid = ++Cursor_BASE;
}
+4
View File
@@ -53,6 +53,10 @@ namespace BingoBrain.Core
{
AppDispatcher.Instance.Dispatch(CsjInfoC.UI_DisplayLoadingUI);
}
else
{
UICtrlDispatcher.Instance.Dispatch(SkinInfo.LoginAUI_Open);
}
}
+9 -1
View File
@@ -97,11 +97,19 @@ public class LoginSystem : BaseSystem
{
AppDispatcher.Instance.Dispatch(CsjInfoC.UI_DisplayLoadingUI);
}
PlayerPrefs.SetInt("is_gift", 1);
PlayerPrefs.SetInt("is_gift", 1);
}
else
{
#if BingoBrainRelease
BrigdeIOS.showGameA(true);
#else
AppDispatcher.Instance.Dispatch(CsjInfoC.Show_uid);
DOVirtual.DelayedCall(2, () =>
{
BrigdeIOS.showGameA(true);
});
#endif
return;
}
loginModel.preferences = new Preferences();