- Added Acitivity Time for Damage + Healing, tooltip show the activity separately.

- Major changes on Encounter Details Plugin making more easy to use.
- Removed Spell Details Plugin.
- Added new plugin: Dps Tuning.

- New API: actor:GetActorSpells() return table with spellid, spelltable.
- New API: actor:GetSpell (spellid) return the table for the spellid.
- New API: combat:GetCombatNumber() return a unique ID number identifying the combat.
- New API: framework:CreateButton (parent, func, w, h, text, param1, param2, texture, member, name, short_method)
- New API: framework:CreateDropDown (parent, func, default, w, h, member, name)
- New API: framework:CreateLabel (parent, text, size, color, font, member, name, layer)
- New API: framework:CreateBar (parent, texture, w, h, value, member, name)
- New API: framework:CreateChartPanel (parent, w, h, name)
This commit is contained in:
tercio
2014-09-08 17:17:56 -03:00
parent 27c2e40bcc
commit 20a9773a58
43 changed files with 2960 additions and 2843 deletions
+4 -4
View File
@@ -217,11 +217,11 @@ local LabelMetaFunctions = {}
------------------------------------------------------------------------------------------------------------
--> object constructor
function gump:CreateLabel (parent, text, size, color, font, member, name)
return gump:NewLabel (parent, nil, name, member, text, font, size, color)
function gump:CreateLabel (parent, text, size, color, font, member, name, layer)
return gump:NewLabel (parent, nil, name, member, text, font, size, color, layer)
end
function gump:NewLabel (parent, container, name, member, text, font, size, color)
function gump:NewLabel (parent, container, name, member, text, font, size, color, layer)
if (not parent) then
return nil
@@ -257,7 +257,7 @@ function gump:NewLabel (parent, container, name, member, text, font, size, color
font = font or "GameFontHighlightSmall"
LabelObject.label = parent:CreateFontString (name, "OVERLAY", font)
LabelObject.label = parent:CreateFontString (name, layer or "OVERLAY", font)
LabelObject.widget = LabelObject.label
LabelObject.label.MyObject = LabelObject