Files
wow_Meta/ui/DressUpModel.lua
PhatPhuckDave 8e28d1a570 Update
Update

Update

Update

Update

Update

Update

Update

Update

Update
2025-05-04 23:16:56 +02:00

21 lines
556 B
Lua

---@meta
---@class DressUpModel : PlayerModel
DressUpModel = {
--- Sets the model to reflect the character's current inventory.
--- @example
--- myDressUpModel:Dress()
Dress = function(self) end,
--- Adds the specified item to the model.
--- @param itemID string|number The item ID or link to try on.
--- @example
--- myDressUpModel:TryOn("item:12345:0:0:0:0:0:0:0")
TryOn = function(self, itemID) end,
--- Sets the model to reflect the character without inventory.
--- @example
--- myDressUpModel:Undress()
Undress = function(self) end,
}