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 27 28 29 30 31 32 33 |
local g_labelControl = nil
if not g_labelControl then
end
return g_labelControl
end
local function GetConfiguredLabelControl ( text , fontDescriptor , optionalLabelWidth , optionalLabelHeight )
end
local control = GetConfiguredLabelControl ( text , fontDescriptor , optionalLabelWidth , optionalLabelHeight )
end
function ZO_LabelUtils_GetTextDimensions ( text , fontDescriptor , optionalLabelWidth , optionalLabelHeight )
local control = GetConfiguredLabelControl ( text , fontDescriptor , optionalLabelWidth , optionalLabelHeight )
end
local NO_TEXT = nil
end |