Thread Tools Display Modes
01-27-11, 02:36 PM   #1
Pyrates
A Cliff Giant
 
Pyrates's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 77
Buffs per row?

Hey I'm checking out ouf_hank, and I'd like to change something about the debuff positioning. For that, I'd need to know how many buffs there are in a row... I do know how much buffs there are in total (buffs.visibleBuffs), but not how many rows there are. I tried checking out the ouf wiki, but it's either not there or I'm stupid (probably the latter ). Can anyone tell me how to find out?
__________________
" ... and the Vogon will do things to you that you wish you'd never been born, or, if you're a clearer minded thinker, that the Vogon had never been born."
  Reply With Quote
01-27-11, 04:34 PM   #2
haste
Featured Artist
 
haste's Avatar
Premium Member
Featured
Join Date: Dec 2005
Posts: 1,027
Buffs rows are calculated based on the number of icons, height and width of the self.Buffs frame.

[1] https://github.com/haste/oUF/blob/ma...a.lua#L146-183
__________________
「貴方は1人じゃないよ」
  Reply With Quote
01-28-11, 06:44 AM   #3
zork
A Pyroguard Emberseer
 
zork's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2008
Posts: 1,740
Code:
local cfg = {}
cfg.Buffs = {
  num           = 40
  buffsPerRow   = 10
  size          = 22
  spacing       = 5
}

self.Buffs.width    = cfg.Buffs.buffsPerRow*(cfg.Buffs.size+cfg.Buffs.spacing)
self.Buffs.height   = (cfg.Buffs.num/cfg.Buffs.buffsPerRow)*(cfg.Buffs.size+cfg.Buffs.spacing)
__________________
| Simple is beautiful.
| WoWI AddOns | GitHub | Zork (WoW)

"I wonder what the non-pathetic people are doing tonight?" - Rajesh Koothrappali (The Big Bang Theory)

Last edited by zork : 01-28-11 at 06:52 AM.
  Reply With Quote
02-01-11, 10:34 AM   #4
Pyrates
A Cliff Giant
 
Pyrates's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 77
Thanks a lot
__________________
" ... and the Vogon will do things to you that you wish you'd never been born, or, if you're a clearer minded thinker, that the Vogon had never been born."
  Reply With Quote

WoWInterface » Featured Projects » oUF (Otravi Unit Frames) » Buffs per row?


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off