mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 14:54:55 +00:00
12 lines
261 B
Lua
12 lines
261 B
Lua
--- Switch to a scene
|
|
---@param scene_id string Scene ID to switch to
|
|
---@return SwitchSceneAction Switch scene action
|
|
local function switch_scene(scene_id)
|
|
return {
|
|
action = "switch_scene",
|
|
scene_id = scene_id
|
|
}
|
|
end
|
|
|
|
return switch_scene
|