You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

229 lines
5.8 KiB

3 years ago
if not WeakAuras.IsLibsOK() then return end
local AddonName, OptionsPrivate = ...
local L = WeakAuras.L;
local function createOptions(parentData, data, index, subIndex)
local options = {
__title = L["Model %s"]:format(subIndex),
__order = 1,
4 years ago
model_visible = {
type = "toggle",
width = WeakAuras.doubleWidth,
name = L["Show Model"],
order = 9,
},
model_fileId = {
type = "input",
width = WeakAuras.doubleWidth - 0.15,
name = L["Model"],
order = 10,
hidden = WeakAuras.IsClassicEra()
},
model_path = {
type = "input",
width = WeakAuras.doubleWidth - 0.15,
name = L["Model"],
order = 10.5,
hidden = not WeakAuras.IsClassicEra()
},
chooseModel = {
type = "execute",
width = 0.15,
name = L["Choose"],
order = 11,
func = function()
OptionsPrivate.OpenModelPicker(parentData, {"subRegions", index});
end,
imageWidth = 24,
imageHeight = 24,
control = "WeakAurasIcon",
image = "Interface\\AddOns\\WeakAuras\\Media\\Textures\\browse",
},
bar_model_clip = {
type = "toggle",
4 years ago
width = WeakAuras.doubleWidth,
name = L["Clipped by Progress"],
order = 12,
hidden = function() return parentData.regionType ~= "aurabar" end
},
4 years ago
extra_width = {
type = "range",
control = "WeakAurasSpinBox",
4 years ago
width = WeakAuras.normalWidth,
name = L["Extra Width"],
order = 12.1,
softMin = -100,
softMax = 500,
step = 1,
hidden = function() return data.bar_model_clip and parentData.regionType == "aurabar" end
},
extra_height = {
type = "range",
control = "WeakAurasSpinBox",
4 years ago
width = WeakAuras.normalWidth,
name = L["Extra Height"],
order = 12.2,
softMin = -100,
softMax = 500,
step = 1,
hidden = function() return data.bar_model_clip and parentData.regionType == "aurabar" end
},
model_alpha = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Alpha"],
order = 13,
min = 0,
max = 1,
bigStep = 0.1
},
api = {
type = "toggle",
name = L["Use SetTransform"],
order = 14,
width = WeakAuras.normalWidth,
},
model_z = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Z Offset"],
softMin = -20,
softMax = 20,
step = .001,
bigStep = 0.05,
order = 20,
hidden = function() return data.api end
},
model_x = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["X Offset"],
softMin = -20,
softMax = 20,
step = .001,
bigStep = 0.05,
order = 30,
hidden = function() return data.api end
},
model_y = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Y Offset"],
softMin = -20,
softMax = 20,
step = .001,
bigStep = 0.05,
order = 40,
hidden = function() return data.api end
},
rotation = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Rotation"],
min = 0,
max = 360,
step = 1,
bigStep = 3,
order = 45,
hidden = function() return data.api end
},
-- New Settings
model_st_tx = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["X Offset"],
softMin = -1000,
softMax = 1000,
step = 1,
bigStep = 5,
order = 20,
hidden = function() return not data.api end
},
model_st_ty = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Y Offset"],
softMin = -1000,
softMax = 1000,
step = 1,
bigStep = 5,
order = 21,
hidden = function() return not data.api end
},
model_st_tz = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Z Offset"],
softMin = -1000,
softMax = 1000,
step = 1,
bigStep = 5,
order = 22,
hidden = function() return not data.api end
},
model_st_rx = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["X Rotation"],
min = 0,
max = 360,
step = 1,
bigStep = 3,
order = 23,
hidden = function() return not data.api end
},
model_st_ry = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Y Rotation"],
min = 0,
max = 360,
step = 1,
bigStep = 3,
order = 24,
hidden = function() return not data.api end
},
model_st_rz = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Z Rotation"],
min = 0,
max = 360,
step = 1,
bigStep = 3,
order = 25,
hidden = function() return not data.api end
},
model_st_us = {
type = "range",
control = "WeakAurasSpinBox",
width = WeakAuras.normalWidth,
name = L["Scale"],
min = 5,
max = 1000,
step = 0.1,
bigStep = 5,
order = 26,
hidden = function() return not data.api end
},
}
4 years ago
OptionsPrivate.AddUpDownDeleteDuplicate(options, parentData, index, "submodel")
return options
end
4 years ago
WeakAuras.RegisterSubRegionOptions("submodel", createOptions, L["Shows a model"]);