Mercurial > wow > reaction
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Defaults.lua Tue Mar 20 21:03:57 2007 +0000 @@ -0,0 +1,79 @@ +-- 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, + } + + }, + } +}