登陆界面去掉儿童协议,主角信息去掉特权等级按钮

dev_chengFeng
wangzhenxing 2023-05-26 18:43:52 +08:00
parent be76933912
commit a0fa68be2a
2 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ function this:InitComponent()
this.ConfirmBtn = Util.GetGameObject(this.gameObject, "protos/Confirm")
this.ConfirmImg = Util.GetGameObject(this.ConfirmBtn, "gou")
this.protos:SetActive(IsUserProtoActive)
this.newproto:SetActive(IsUserProtoActive)
this.newproto:SetActive(false)
end
--绑定事件(用于子类重写)
@ -477,7 +477,7 @@ function this.RequestProtos(userId)
end
if UrlList[1] ~= "" and UrlList[2] ~="" then
this.protos:SetActive(true)
this.newproto:SetActive(true)
this.newproto:SetActive(false)
HaveConfirm = true
else
this.protos:SetActive(false)

View File

@ -148,7 +148,7 @@ end
function PlayerInfoView:SetPrivilegeShow(isShow)
self.vipPrivilegeBtn:SetActive(false)
--self.btn_mingwang:SetActive(not not isShow)
self.btn_mingwang:SetActive(true)
self.btn_mingwang:SetActive(false)
end
return PlayerInfoView