- Changed few icons on damage done tooltip.

- Fixed the class color on texts for healing attribute.
- Added options for change the tooltip border's size, color and texture.
- Added buttons for test interrupt and cooldown announcers under raid tools section.

- New API: _detalhes:SetTooltipBackdrop (border_texture, border_size, border_color) set tooltip border configs.
This commit is contained in:
tercio
2014-09-10 22:55:34 -03:00
parent 556d5549dc
commit 714daf6a99
12 changed files with 296 additions and 45 deletions
+7 -5
View File
@@ -1,8 +1,3 @@
--[[ Esta classe irá abrigar todo a cura de uma habilidade
Parents:
addon -> combate atual -> cura -> container de jogadores -> esta classe
]]
--lua locals
local _cstr = string.format
@@ -836,6 +831,13 @@ function atributo_heal:RefreshBarra (esta_barra, instancia, from_resize)
end
end
if (instancia.row_info.textL_class_colors) then
esta_barra.texto_esquerdo:SetTextColor (actor_class_color_r, actor_class_color_g, actor_class_color_b)
end
if (instancia.row_info.textR_class_colors) then
esta_barra.texto_direita:SetTextColor (actor_class_color_r, actor_class_color_g, actor_class_color_b)
end
esta_barra.texto_esquerdo:SetSize (esta_barra:GetWidth() - esta_barra.texto_direita:GetStringWidth() - 20, 15)
end