mirror of
https://github.com/gongxh0901/kunpocc-behaviortree.git
synced 2025-12-26 16:48:56 +00:00
修正WaitTime注释
将等待时间注释从"毫秒 ms"修正为"秒 s"以匹配实际实现 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -123,7 +123,7 @@ export class WaitTicks extends Action {
|
|||||||
* 时间到后返回SUCCESS,否则返回RUNING
|
* 时间到后返回SUCCESS,否则返回RUNING
|
||||||
*/
|
*/
|
||||||
export class WaitTime extends Action {
|
export class WaitTime extends Action {
|
||||||
/** 等待时间(毫秒 ms) @internal */
|
/** 等待时间(秒 s) @internal */
|
||||||
private _duration: number;
|
private _duration: number;
|
||||||
constructor(duration: number = 0) {
|
constructor(duration: number = 0) {
|
||||||
super();
|
super();
|
||||||
|
|||||||
Reference in New Issue
Block a user