|
@@ -5,6 +5,8 @@ namespace GFGGame
|
|
|
{
|
|
|
public class LoginController
|
|
|
{
|
|
|
+ public static string ageTipsTitle = "适龄提示说明";
|
|
|
+ public static string ageTips = "1)本游戏是一款角色扮演类游戏,适用于年满16周岁及以上的用户,建议未成年人在家长监护下使用游戏产品。\n2)本游戏基于架空的故事背景和幻想世界观,剧情简单且积极向上,没有基于真实历史和现实事件的改编内容游戏玩法以收集不同服装进行搭配展开,有较为简单的竞技和对抗玩法,游戏中有基于文字的陌生人社交系统。\n3)本游戏中有用户实名认证系统,认证为未成年人的用户将接受以下管理:游戏中部分玩法和道具需要付费。未满8周岁的用户不能付费; 8周岁以上未满16周岁的未成年人用户,单次充值金额不得超过50元人民币,每月充值金额累计不得超过200元人民币; 16周岁以上的未成年人用户,单次充值金额不得超过100元人民币,每月充值金额累计不得超过400元人民币。\n4)本游戏以服装收集及搭配为主要玩法,有助于玩家开阔眼界、进一步提升审美能力。游戏中很多服装融入了中华传统元素,可以有助于中华传统文化的传播,体验中国的古典美。";
|
|
|
public static void ShowLogin()
|
|
|
{
|
|
|
LauncherView.Instance.Close();
|
|
@@ -107,7 +109,7 @@ namespace GFGGame
|
|
|
Debug.Log("noticeTime:" + noticeTime + " currentTime:" + currentTime);
|
|
|
if ((currentTime - noticeTime) / TimeUtil.SECOND_PER_DAY < 3)
|
|
|
{
|
|
|
- ViewManager.Show<SystemNoticeView>();
|
|
|
+ ViewManager.Show<SystemNoticeView>(new object[] { NoticeDataManager.Instance.LastNoticeInfo.title, NoticeDataManager.Instance.LastNoticeInfo.content });
|
|
|
}
|
|
|
}
|
|
|
return;
|
|
@@ -217,7 +219,7 @@ namespace GFGGame
|
|
|
ViewManager.Show<LoadingView>();
|
|
|
// LoadingView.Instance.Open();
|
|
|
LoadingView.Instance.SetProgress(99);
|
|
|
- LoadingView.Instance.SetDesc("正在进入游戏");
|
|
|
+ LoadingView.Instance.SetDesc("正在进入游戏");
|
|
|
LogServerHelperHttp.SendNodeLog((int)LogNode.StartEnterGame);
|
|
|
int errorCode = await LoginHelper.GetRealmKey(GameGlobal.zoneScene);
|
|
|
if (errorCode != ErrorCode.ERR_Success)
|