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

17
ui/LayeredRegion.lua Normal file
View File

@@ -0,0 +1,17 @@
---@meta
---@class LayeredRegion : Region
LayeredRegion = {
--- Gets the draw layer of the region.
--- @return string layer The draw layer.
--- @example
--- local layer = myLayeredRegion:GetDrawLayer()
GetDrawLayer = function(self) end,
--- Sets the draw layer of the region.
--- @param layer string The draw layer.
--- @param subLevel number? Optional. The sublevel within the layer.
--- @example
--- myLayeredRegion:SetDrawLayer("ARTWORK", 1)
SetDrawLayer = function(self, layer, subLevel) end,
}