1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
function ZO_Tooltip : LayoutChampionConstellation ( attributeName , attributeIcon , constellationName , constellationDescription , numPointsAvailable , numSpentPoints )
availablePointsSection : AddLine ( GetString ( SI_GAMEPAD_CHAMPION_AVAILABLE_POINTS_LABEL ) , self : GetStyle ( "pointsHeader" ) )
local constellationTitleSection = self : AcquireSection ( self : GetStyle ( "championTitleSection" ) , self : GetStyle ( "title" ) )
constellationTitleSection : AddTexture ( ZO_GAMEPAD_HEADER_DIVIDER_TEXTURE , self : GetStyle ( "dividerLine" ) )
spentPointsSection : AddLine ( GetString ( SI_GAMEPAD_CHAMPION_ALLOCATED_POINTS_LABEL ) , self : GetStyle ( "pointsHeader" ) )
local bodySection = self : AcquireSection ( self : GetStyle ( "championBodySection" ) , self : GetStyle ( "bodySection" ) )
end |