18 lines
341 B
Lua
18 lines
341 B
Lua
---@type RuntimeCommands
|
|
local commands = runtime.import("runtime_commands")
|
|
|
|
local animation = {}
|
|
|
|
function animation.move_piece(piece_id, path)
|
|
return commands.move_path(piece_id, path, {
|
|
duration = 0.55,
|
|
onComplete = "piece_move_done"
|
|
})
|
|
end
|
|
|
|
function animation.toast(text)
|
|
return commands.toast(text)
|
|
end
|
|
|
|
return animation
|