Update

Update

Update

Update

Update

Update

Update

Update

Update
This commit is contained in:
2025-05-04 20:46:46 +02:00
parent 169a514973
commit 8e28d1a570
38 changed files with 2668 additions and 89 deletions

20
ui/DressUpModel.lua Normal file
View File

@@ -0,0 +1,20 @@
---@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,
}