mirror of
https://github.com/edubart/otclient.git
synced 2025-10-14 11:34:54 +02:00
outfit looktype change
This commit is contained in:
@@ -2,6 +2,8 @@ Outfit = {}
|
||||
|
||||
-- private variables
|
||||
local window = nil
|
||||
local outfits = nil
|
||||
local currentOutfit = 1
|
||||
|
||||
-- public functions
|
||||
function Outfit.test()
|
||||
@@ -18,9 +20,13 @@ end
|
||||
function Outfit.create(creature, outfitList)
|
||||
Outfit.destroy()
|
||||
window = loadUI("/outfit/outfit.otui", UI.root)
|
||||
window:lock()
|
||||
|
||||
local creatureWidget = window:getChildById('creature')
|
||||
creatureWidget:setCreature(creature)
|
||||
|
||||
outfits = outfitList
|
||||
currentOutfit = 1
|
||||
end
|
||||
|
||||
function Outfit.destroy()
|
||||
@@ -30,6 +36,30 @@ function Outfit.destroy()
|
||||
end
|
||||
end
|
||||
|
||||
function Outfit.nextType()
|
||||
local creatureWidget = window:getChildById('creature')
|
||||
currentOutfit = currentOutfit + 1
|
||||
if currentOutfit > #outfits then
|
||||
currentOutfit = 1
|
||||
end
|
||||
|
||||
creatureWidget:setOutfitType(outfits[currentOutfit][1])
|
||||
|
||||
-- TODO: update addons
|
||||
end
|
||||
|
||||
function Outfit.previousType()
|
||||
local creatureWidget = window:getChildById('creature')
|
||||
currentOutfit = currentOutfit - 1
|
||||
if currentOutfit <= 0 then
|
||||
currentOutfit = #outfits
|
||||
end
|
||||
|
||||
creatureWidget:setOutfitType(outfits[currentOutfit][1])
|
||||
|
||||
-- TODO: update addons
|
||||
end
|
||||
|
||||
-- private functions
|
||||
|
||||
-- hooked events
|
||||
|
@@ -10,6 +10,22 @@ Window
|
||||
anchors.left: parent.left
|
||||
margin.top: 30
|
||||
margin.left: 20
|
||||
|
||||
Button
|
||||
onClick: Outfit.previousType()
|
||||
text: <<
|
||||
width: 32
|
||||
margin.top: 3
|
||||
anchors.top: creature.bottom
|
||||
anchors.left: creature.left
|
||||
|
||||
Button
|
||||
onClick: Outfit.nextType()
|
||||
text: >>
|
||||
width: 32
|
||||
margin.top: 3
|
||||
anchors.top: creature.bottom
|
||||
anchors.right: creature.right
|
||||
|
||||
HorizontalSeparator
|
||||
anchors.left: parent.left
|
||||
|
Reference in New Issue
Block a user