View Single Post
07-30-10, 08:05 PM   #8
MoonWitch
A Firelord
AddOn Author - Click to view addons
Join Date: Sep 2007
Posts: 455
Originally Posted by yj589794 View Post
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.
Thanks for that one, saved me a search through files I completely forgot about self.Range :P
  Reply With Quote