18 lines
448 B
Lua
18 lines
448 B
Lua
local currentPath = (...):match('(.-)[^%./]+$')
|
|
local parentPath = currentPath:match('(.-)[^%./]+%.$')
|
|
|
|
--- @class IUILib
|
|
local iui = require(parentPath .. "iui")
|
|
|
|
--- @param image IUIImage9Slice
|
|
--- @param color? IUIColor
|
|
function iui.msdfImage9Slice(image, color)
|
|
color = color or iui.colors.white
|
|
|
|
local x, y, w, h = iui.layout.getBounds()
|
|
|
|
color:set()
|
|
iui.graphics.msdfNineSlice(image, x, y, w, h)
|
|
|
|
iui.layout.advance()
|
|
end
|