View Single Post
09-26-16, 05:21 PM   #5
Maxen
A Fallenroot Satyr
Join Date: Aug 2008
Posts: 23
Finally got it, had to play with the textures also. Thanks for the help!

Code:
function Border:OnUpdate(parent, unit, status)
	if status then
		parent:SetBeautyBorderTexture('white')
		parent:SetBeautyBorderColor(status:GetColor(unit))
	else
		parent:SetBeautyBorderTexture('default')
		parent:SetBeautyBorderColor(1,1,1)
	end
end
  Reply With Quote