fix(docs): 修复行为树文档中的死链接

This commit is contained in:
YHH
2025-10-28 11:54:39 +08:00
parent b410e2de47
commit 4e81fc7eba
3 changed files with 4 additions and 10 deletions

View File

@@ -591,6 +591,5 @@ const fsm = BehaviorTreeBuilder.create(scene, 'StateMachine')
## 下一步 ## 下一步
- 查看[自定义节点](./custom-nodes.md)学习如何创建自定义行为节点 - 查看[自定义动作](./custom-actions.md)学习如何创建自定义行为节点
- 阅读[最佳实践](./best-practices.md)了解行为树设计技巧 - 阅读[最佳实践](./best-practices.md)了解行为树设计技巧
- 查看[节点参考](./node-reference.md)了解所有内置节点

View File

@@ -546,6 +546,5 @@ describe('EnemyAI', () => {
## 下一步 ## 下一步
- 查看[节点参考](./node-reference.md)了解所有内置节点 - 学习[自定义动作](./custom-actions.md)扩展行为树功能
- 学习[自定义节点](./custom-nodes.md)扩展行为树功能
- 探索[高级用法](./advanced-usage.md)了解更多技巧 - 探索[高级用法](./advanced-usage.md)了解更多技巧

View File

@@ -53,7 +53,7 @@
### 编辑器使用 ### 编辑器使用
- **[编辑器使用指南](./editor-guide.md)** - 可视化创建行为树 - **[编辑器使用指南](./editor-guide.md)** - 可视化创建行为树
- **[节点参考](./node-reference.md)** - 所有内置节点的详细说明 - **[编辑器工作流](./editor-workflow.md)** - 完整的开发流程
### 引擎集成 ### 引擎集成
@@ -63,13 +63,9 @@
### 高级主题 ### 高级主题
- **[高级用法](./advanced-usage.md)** - 子树、异步加载、性能优化 - **[高级用法](./advanced-usage.md)** - 子树、异步加载、性能优化
- **[自定义节点](./custom-nodes.md)** - 创建自定义行为节点 - **[自定义动作](./custom-actions.md)** - 创建自定义行为节点
- **[最佳实践](./best-practices.md)** - 行为树设计模式和技巧 - **[最佳实践](./best-practices.md)** - 行为树设计模式和技巧
### API参考
- **[API 文档](../../api/behavior-tree/README.md)** - 完整的API参考
## 快速示例 ## 快速示例
### 代码方式创建 ### 代码方式创建