annotate config.lua @ 55:9ab2e1401152

add AceGui to pkgdeps
author Chris Mellon <arkanes@gmail.com>
date Wed, 13 Jul 2011 21:35:46 -0500
parents c4324144d380
children 4d359ee4649c
rev   line source
arkanes@54 1 local _, kbf = ...
arkanes@54 2
arkanes@54 3 -- These are the static options which can't be displayed/used by in-game configs
arkanes@54 4 kbf.staticConfig = {}
arkanes@54 5 kbf.staticConfig.BAR_HEIGHT = 16 -- note that you do have to update this in the XML as well if you change it
arkanes@54 6 kbf.staticConfig.BAR_WIDTH = 200 -- otherwise the hitbox for clicking off a buff won't be the same size as the displayed buff bar
arkanes@54 7
arkanes@54 8
arkanes@54 9 -- default profile options
arkanes@54 10 kbf.defaultConfig = {
arkanes@54 11 profile = {
arkanes@54 12 ["consolidateBuffs"] = true,
arkanes@54 13 }
arkanes@54 14 }