You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
282 B
Lua

-- Log
--
local bret = require "behavior3.behavior_ret"
local M = {
name = "Log",
type = "Action",
desc = "打印日志",
args = {
{"str", "string", "日志"}
},
}
function M.run(node, _)
print(node.args.str)
return bret.SUCCESS
end
return M