1 -- PaladinIndicators.lua
2 local indSize = OmaRFSettings.IndSize;
3 local rhomb = "Interface\\AddOns\\OmaRF\\images\\rhomb";
6 OmaRFIndicators.Class["PALADIN"] = M;
8 [53563] = "TOPRIGHT", -- Beacon of Light
9 [156910] = "TOPRIGHT", -- Beacon of Faith
10 [200025] = "TOPRIGHT", -- Beacon of Virtue
13 function M.Setup(base)
15 inds["TOPRIGHT"] = base:CreateTexture(nil, "OVERLAY");
16 inds["TOPRIGHT"]:SetPoint("TOPRIGHT", base, "TOPRIGHT");
17 inds["TOPRIGHT"]:SetWidth(indSize);
18 inds["TOPRIGHT"]:SetHeight(indSize);
19 inds["TOPRIGHT"]:SetTexture(rhomb);
20 inds["TOPRIGHT"]:SetVertexColor(1, 0, 0);
21 inds["TOPRIGHT"]:Hide();