Mercurial > wow > reaction
view Defaults.lua @ 1:c11ca1d8ed91
Version 0.1
author | Flick <flickerstreak@gmail.com> |
---|---|
date | Tue, 20 Mar 2007 21:03:57 +0000 |
parents | |
children | f920db5fc6b1 |
line wrap: on
line source
-- ReAction default variable tables -- configuration options for ReActionButton groups ReActionButtonConfigDefaults = { type = "ReActionButton", actionIDs = { }, keyBindLoc = "TOPLEFT", keyBindColorCode = true, stackCountLoc = "BOTTOMRIGHT", showKeyBind = true, showNumericCooldown = false, showStackCount = true, showMacroName = true, showGrid = true, } ReActionBarConfigDefaults = { visibility = true, size = 36, spacing = 6, rows = 1, columns = 12, pages = 1, opacity = 100, anchor = { to = "UIParent", point = "CENTER", relPoint = "CENTER", x = 0, y = 0 }, btnConfig = ReActionButtonConfigDefaults } -- default variables ReActionProfileDefaults = { -- global options hideArt = false, -- default layout replicates Blizzard layout bars = { -- main paged action bar [1] = { visibility = true, size = 36, spacing = 6, rows = 1, columns = 12, pages = 5, opacity = 100, anchor = { to = "UIParent", point = "BOTTOMRIGHT", relPoint = "BOTTOM", x = 2, y = -4 }, btnConfig = { type = "ReActionButton", actionIDs = { }, keyBindLoc = "TOPLEFT", keyBindColorCode = true, stackCountLoc = "BOTTOMRIGHT", showKeyBind = true, showNumericCooldown = false, showStackCount = true, showMacroName = true, showGrid = true, } }, } }