mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 07:14:56 +00:00
14 lines
337 B
Lua
14 lines
337 B
Lua
--- Stream scene layout component
|
|
---@param type "single"|"pip"|"split" Layout type
|
|
---@param sources? table[] Layout sources
|
|
---@return SceneLayoutComponent Layout component
|
|
local function layout(type, sources)
|
|
return {
|
|
type = "scene_layout",
|
|
layoutType = type,
|
|
sources = sources or {}
|
|
}
|
|
end
|
|
|
|
return layout
|