* refactor(behavior-tree)!: 迁移到 Runtime 执行器架构 * fix(behavior-tree): 修复LogAction中的ReDoS安全漏洞 * feat(behavior-tree): 完善行为树核心功能并修复类型错误
30 lines
612 B
TypeScript
30 lines
612 B
TypeScript
/**
|
|
* @esengine/behavior-tree
|
|
*
|
|
* 行为树系统
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
|
|
// 类型定义
|
|
export * from './Types/TaskStatus';
|
|
|
|
// Runtime
|
|
export * from './Runtime';
|
|
|
|
// 辅助工具
|
|
export * from './BehaviorTreeStarter';
|
|
export * from './BehaviorTreeBuilder';
|
|
|
|
// 序列化
|
|
export * from './Serialization/NodeTemplates';
|
|
export * from './Serialization/BehaviorTreeAsset';
|
|
export * from './Serialization/EditorFormatConverter';
|
|
export * from './Serialization/BehaviorTreeAssetSerializer';
|
|
|
|
// 服务
|
|
export * from './Services/GlobalBlackboardService';
|
|
|
|
// 插件
|
|
export * from './BehaviorTreePlugin';
|