【提审】不再显示充值竖条,也不再触发相关引导

gaoxin 2021-12-30 23:28:55 +08:00
parent 6e2b1c1a17
commit 9c22dfc990
2 changed files with 5 additions and 1 deletions

View File

@ -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)

View File

@ -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)