mirror of
https://github.com/edubart/otclient.git
synced 2025-10-14 19:44:54 +02:00
outfit window init
This commit is contained in:
41
modules/outfit/outfit.lua
Normal file
41
modules/outfit/outfit.lua
Normal file
@@ -0,0 +1,41 @@
|
||||
Outfit = {}
|
||||
|
||||
-- private variables
|
||||
local window = nil
|
||||
|
||||
-- public functions
|
||||
function Outfit.test()
|
||||
local button = UIButton.create()
|
||||
UI.root:addChild(button)
|
||||
button:setText('Set Outfit')
|
||||
button:setStyle('Button')
|
||||
button:moveTo({x = 0, y = 100})
|
||||
button:setWidth('100')
|
||||
button:setHeight('30')
|
||||
button.onClick = function() Game.openOutfitWindow() end
|
||||
end
|
||||
|
||||
function Outfit.create(creature, outfitList)
|
||||
if window ~= nil then
|
||||
Outfit.destroy()
|
||||
end
|
||||
|
||||
window = loadUI("/outfit/outfit.otui", UI.root)
|
||||
|
||||
local creatureWidget = window:getChildById('creature')
|
||||
creatureWidget:setCreature(creature)
|
||||
end
|
||||
|
||||
function Outfit.destroy()
|
||||
window:destroy()
|
||||
window = nil
|
||||
end
|
||||
|
||||
-- private functions
|
||||
|
||||
-- hooked events
|
||||
|
||||
connect(Game, { onOpenOutfitWindow = Outfit.create,
|
||||
onLogout = Outfit.destroy })
|
||||
|
||||
connect(Game, { onLogin = Outfit.test })
|
Reference in New Issue
Block a user