View Single Post
07-30-10, 07:44 AM   #2
yj589794
A Rage Talon Dragon Guard
AddOn Author - Click to view addons
Join Date: Mar 2009
Posts: 314
In oUF 1.3 the range element used the following variables:
Code:
self.Range = true
self.inRangeAlpha = 1
self.outsideRangeAlpha = 0.5

In oUF 1.4 the range element uses the following variables:
Code:
self.Range = {
	insideAlpha = 1,
	outsideAlpha = 0.5,
}
The existance of a self.Range variable gives implicit enabling of the range element.


Update your layout as required.
  Reply With Quote