PGRData/Resources/Scripts/XUi/XUiRpgTower/CharacterPage/GrowPage/XUiRpgTowerGrowPageNatureLine.lua
2022-12-26 14:06:01 +05:30

13 lines
No EOL
512 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 兵法蓝图天赋树线控件
local XUiRpgTowerGrowPageNatureLine = XClass(nil, "XUiRpgTowerGrowPageNatureLine")
function XUiRpgTowerGrowPageNatureLine:Ctor(ui, prepos, pos)
if not ui then XLog.Error(string.format("无法找到天赋树连线UiprePos%d pos%d", prepos, pos)) return end
self.GrayLine = ui.transform:Find("Gray")
end
function XUiRpgTowerGrowPageNatureLine:SetLineState(isShow)
self.GrayLine.gameObject:SetActiveEx(not isShow)
end
return XUiRpgTowerGrowPageNatureLine