【提审】不再显示充值竖条,也不再触发相关引导
parent
6e2b1c1a17
commit
9c22dfc990
|
@ -57,6 +57,10 @@ function this.PracticeGuideFun()
|
|||
end
|
||||
|
||||
function this.OnLevelChange()
|
||||
-- 提审服不再出发相关引导
|
||||
if SERVER_VERSION == 1 then
|
||||
return
|
||||
end
|
||||
-- 首充引导特殊处理到十级开放
|
||||
if PlayerManager.level == 10 then
|
||||
table.insert(_FuncGuideList, 100200)
|
||||
|
|
|
@ -950,7 +950,7 @@ end
|
|||
local ySet = {[1] = 361 ,[2] = 512,[3] = 663,[4] = 814,[5] = 965 }
|
||||
--设置右侧条
|
||||
function this.SetRightBarSize()
|
||||
this.RightUp2:SetActive(PlayerManager.level >= 5)
|
||||
this.RightUp2:SetActive(PlayerManager.level >= 5 and SERVER_VERSION == 0)
|
||||
local str = PlayerPrefs.GetInt(PlayerManager.uid.."MainRightBarSetting")
|
||||
if not str or str == 0 then
|
||||
this.RightUp2bgSize.sizeDelta = Vector3.New(180,320,0)
|
||||
|
|
Loading…
Reference in New Issue