From 654c8755f043aa0e42e0033cf7ed28df2c4649ec Mon Sep 17 00:00:00 2001 From: gongxh Date: Tue, 15 Jul 2025 10:39:59 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3WaitTime=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将等待时间注释从"毫秒 ms"修正为"秒 s"以匹配实际实现 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/behaviortree/BTNode/Action.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/behaviortree/BTNode/Action.ts b/src/behaviortree/BTNode/Action.ts index b87b878..d7e246f 100644 --- a/src/behaviortree/BTNode/Action.ts +++ b/src/behaviortree/BTNode/Action.ts @@ -123,7 +123,7 @@ export class WaitTicks extends Action { * 时间到后返回SUCCESS,否则返回RUNING */ export class WaitTime extends Action { - /** 等待时间(毫秒 ms) @internal */ + /** 等待时间(秒 s) @internal */ private _duration: number; constructor(duration: number = 0) { super();