summaryrefslogtreecommitdiff
path: root/indra/newview/scripts/lua/LLAppearance.lua
blob: ec7a25197fab274765f87205609fa021707ebe75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
leap = require 'leap'

local LLAppearance = {}

function LLAppearance.addOutfit(folder)
    leap.request('LLAppearance', {op='wearOutfit', append = true, folder_id=folder})
end

function LLAppearance.replaceOutfit(folder)
    leap.request('LLAppearance', {op='wearOutfit', append = false, folder_id=folder})
end

function LLAppearance.addOutfitByName(folder)
    leap.request('LLAppearance', {op='wearOutfitByName', append = true, folder_name=folder})
end

function LLAppearance.replaceOutfitByName(folder)
    leap.request('LLAppearance', {op='wearOutfitByName', append = false, folder_name=folder})
end

function LLAppearance.getOutfitsList()
    return leap.request('LLAppearance', {op='getOutfitsList'})['outfits']
end

return LLAppearance