Update README.md

This commit is contained in:
Caiyishuai 2023-11-06 17:33:16 +08:00 committed by GitHub
parent effa653e30
commit 06229acd7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
### 1. `BehaviorTree.py` 实现行为树叶子结点和非叶子结点的定义
- **Leaf **:表示叶节点,可以是动作(`act`)或条件(`cond`)。
- **Leaf**:表示叶节点,可以是动作(`act`)或条件(`cond`)。
- **ControlBT**:代表可能包含控制节点的行为树。它们可以是选择器(`?`)、序列(`>`)、动作节点(`act`)或条件节点(`cond`)。
- 上述两个类都包含 `tick` 方法。