导出 Status 枚举;导出参数类型;添加条件节点基类

This commit is contained in:
gongxh
2025-09-17 11:05:23 +08:00
parent b582a5d1da
commit b1107805d0
3 changed files with 25 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ import { LeafNode } from "./AbstractNodes";
*/
@BT.ActionNode("WaitTicks", {
name: "等待次数",
group: "等待行为",
group: "基础行为节点",
desc: "等待指定次数后返回成功",
})
export class WaitTicks extends LeafNode {
@@ -42,7 +42,7 @@ export class WaitTicks extends LeafNode {
*/
@BT.ActionNode("WaitTime", {
name: "等待时间",
group: "等待行为",
group: "基础行为节点",
desc: "等待指定时间(秒)后返回成功",
})
export class WaitTime extends LeafNode {