|
@@ -29,10 +29,10 @@ namespace GFGGame
|
|
|
isfullScreen = true;
|
|
|
isReturnView = true;
|
|
|
|
|
|
+ _ui.m_btnHelp.visible = false;
|
|
|
_ui.m_txtVersion.text = GameGlobal.version;
|
|
|
_ui.m_txtSlogan.maxLength = GlobalCfgArray.globalCfg.maxSloganWordsCount;
|
|
|
|
|
|
- _ui.m_btnHelp.onClick.Add(OnClickBtnHelp);
|
|
|
_ui.m_txtSlogan.onFocusOut.Add(OnFocuseOut);
|
|
|
_ui.m_loaChangeName.onClick.Add(OnClickLoaChangeName);
|
|
|
|
|
@@ -45,6 +45,7 @@ namespace GFGGame
|
|
|
_ui.m_list.itemRenderer = RenderListItem;
|
|
|
_ui.m_list.onClickItem.Add(OnListItemClick);
|
|
|
_ui.m_loaBg.url = ResPathUtil.GetBgImgPath("xc_bjbj");
|
|
|
+
|
|
|
}
|
|
|
|
|
|
protected override void AddEventListener()
|
|
@@ -151,11 +152,6 @@ namespace GFGGame
|
|
|
ViewManager.Show<PersonalPhotoView>(index, new object[] { typeof(RoleInfoView).FullName, this.viewData });
|
|
|
}
|
|
|
|
|
|
- private void OnClickBtnHelp()
|
|
|
- {
|
|
|
- GMController.ShowGmView();
|
|
|
- }
|
|
|
-
|
|
|
private async void OnFocuseOut()
|
|
|
{
|
|
|
_ui.m_txtSlogan.text = await RoleInfoSProxy.ReqModifySlogan(_ui.m_txtSlogan.text);
|