Unreal Behavior Trees
Author NPC decision-making in UE5 with Behavior Trees driven by a Blackboard: structure the
tree with composites, gate branches with decorators, keep state current with services, and run
it from an AIController. Targets UE 5.8.
When to use
- Use when building enemy/NPC AI: creating a
BT_/BB_ asset pair, structuring
Selector/Sequence branches, adding decorators (conditions) and services (periodic updates),
writing custom BTTask/BTService nodes, or wiring an AIController to run the tree.
- Use when the project has Behavior Tree (
BT_) and Blackboard (BB_) assets and an
AAIController.
When not to use: the concept of AI (FSM vs BT vs steering, cross-engine) →
game-ai. Pure navigation/pathing math is engine navmesh (BT's MoveTo uses it). Simple
one-off logic may be cheaper as a small state machine than a full tree.
Core workflow
- Create the pair: a Blackboard (
BB_) holds typed keys (the AI's memory: TargetActor,
LastKnownLocation, bIsInvestigating); a Behavior Tree (BT_) references that Blackboard.
- Possess and run. An
AAIController possesses the pawn and calls RunBehaviorTree(BT),
which also initializes the referenced Blackboard.
- Structure with composites. Selector runs children left→right until one succeeds
(priority/fallback: "attack, else chase, else patrol"). Sequence runs children until one
fails (do-all: "move to cover → reload → peek"). Simple Parallel runs one main task
alongside a secondary.
- Gate branches with Decorators that read Blackboard keys (e.g. "Has Target?" guards the
combat branch). Set Observer Aborts so the tree re-evaluates when the key changes.
- Keep the Blackboard current with Services attached to a branch — they tick periodically
(e.g. update
TargetActor via a sight check) only while that branch is active.
- Do work in Tasks, which return
Succeeded, Failed, or InProgress (latent tasks like
MoveTo finish later).
- Verify with the Behavior Tree debugger during PIE — it highlights the running node and
shows live Blackboard values, so you see exactly which branch executes.
Patterns
1. AIController that runs the tree (C++)
void AEnemyAIController::OnPossess(APawn* InPawn)
{
Super::OnPossess(InPawn);
if (BehaviorTree) // UPROPERTY(EditAnywhere) TObjectPtr<UBehaviorTree>
RunBehaviorTree(BehaviorTree); // initializes & uses the Blackboard the BT references
}
2. A priority tree (node structure)
ROOT
└── Selector (try combat, else investigate, else patrol)
├── Sequence [Decorator: Blackboard 'TargetActor' Is Set, Observer Aborts: Both]
│ ├── Task: MoveTo (TargetActor) // latent: returns InProgress then Succeeded
│ └── Task: Attack
├── Sequence [Decorator: 'LastKnownLocation' Is Set]
│ ├── Task: MoveTo (LastKnownLocation)
│ └── Task: Wait (3s) + clear key
└── Task: Patrol (BTTask_FindPatrolPoint -> MoveTo)
Observer Aborts: Both makes the combat branch interrupt patrol the instant TargetActor is
set, and bail out when it's cleared — this is what makes the AI feel reactive.
3. Updating the Blackboard from code (e.g. on seeing the player)
void AEnemyAIController::SetTarget(AActor* Target)
{
if (UBlackboardComponent* BB = GetBlackboardComponent())
BB->SetValueAsObject(TEXT("TargetActor"), Target); // key name must match the BB asset
}
// Clear with BB->ClearValue(TEXT("TargetActor")); to drop back to a lower-priority branch.
Pitfalls
- AI never starts — the pawn isn't possessed (set the Pawn's Auto Possess AI to "Placed
in World or Spawned" and assign the AIController), or
RunBehaviorTree was never called.
MoveTo instantly fails — no NavMesh in the level (add a Nav Mesh Bounds Volume), or the
target is off the navmesh.
- Branch doesn't react to changes — the gating Decorator's Observer Aborts is set to
None; set it to Self/Lower Priority/Both so the tree re-evaluates when the key changes.
- A task hangs the tree — a custom task returned
InProgress and never calls
FinishLatentTask. Always complete latent tasks.
- Blackboard key typos —
SetValueAsObject("Taget", ...) silently does nothing; match the
key name and type exactly, or use a cached FBlackboardKeySelector.
- Sequence vs Selector confusion — Sequence = AND (stops on first failure); Selector = OR
(stops on first success). Swapping them inverts the behaviour.
References
- For a custom C++
UBTTaskNode (instant and latent ExecuteTask returning EBTNodeResult,
with a FBlackboardKeySelector), read references/custom-bttask.md.
- Primary docs: "Behavior Trees in Unreal Engine"
(
https://dev.epicgames.com/documentation/en-us/unreal-engine/behavior-trees-in-unreal-engine).
Related skills
game-ai — engine-agnostic AI design (FSM, BT, steering, pathfinding choices).
unreal-cpp-gameplay — the AIController and pawn classes in C++.
fps-shooter / tower-defense — genres that compose enemy AI.
1---2name: unreal-behavior-trees3description: Build NPC AI in Unreal Engine 5 with Behavior Trees and Blackboards: composites (Selector/Sequence), tasks, decorators, services, and running the tree from an AIController. Use when creating enemy/NPC AI, BT_/BB_ assets, custom BTTask or BTService nodes, or when the user mentions Behavior Tree, Blackboard, AIController, BTTask, decorator, or service.4---5
6# Unreal Behavior Trees
7
8Author NPC decision-making in UE5 with Behavior Trees driven by a Blackboard: structure the
9tree with composites, gate branches with decorators, keep state current with services, and run
10it from an AIController. Targets **UE 5.8**.
11
12## When to use
13
14- Use when building enemy/NPC AI: creating a `BT_`/`BB_` asset pair, structuring
15 Selector/Sequence branches, adding decorators (conditions) and services (periodic updates),
16 writing custom `BTTask`/`BTService` nodes, or wiring an AIController to run the tree.
17- Use when the project has Behavior Tree (`BT_`) and Blackboard (`BB_`) assets and an
18 `AAIController`.
19
20**When *not* to use:** the *concept* of AI (FSM vs BT vs steering, cross-engine) →
21`game-ai`. Pure navigation/pathing math is engine navmesh (BT's `MoveTo` uses it). Simple
22one-off logic may be cheaper as a small state machine than a full tree.
23
24## Core workflow
25
261. **Create the pair:** a Blackboard (`BB_`) holds typed keys (the AI's memory: `TargetActor`,
27 `LastKnownLocation`, `bIsInvestigating`); a Behavior Tree (`BT_`) references that Blackboard.
282. **Possess and run.** An `AAIController` possesses the pawn and calls `RunBehaviorTree(BT)`,
29 which also initializes the referenced Blackboard.
303. **Structure with composites.** **Selector** runs children left→right until one *succeeds*
31 (priority/fallback: "attack, else chase, else patrol"). **Sequence** runs children until one
32 *fails* (do-all: "move to cover → reload → peek"). **Simple Parallel** runs one main task
33 alongside a secondary.
344. **Gate branches with Decorators** that read Blackboard keys (e.g. "Has Target?" guards the
35 combat branch). Set **Observer Aborts** so the tree re-evaluates when the key changes.
365. **Keep the Blackboard current with Services** attached to a branch — they tick periodically
37 (e.g. update `TargetActor` via a sight check) only while that branch is active.
386. **Do work in Tasks**, which return `Succeeded`, `Failed`, or `InProgress` (latent tasks like
39 `MoveTo` finish later).
407. **Verify** with the Behavior Tree debugger during PIE — it highlights the running node and
41 shows live Blackboard values, so you see exactly which branch executes.
42
43## Patterns
44
45### 1. AIController that runs the tree (C++)
46
47```cpp
48void AEnemyAIController::OnPossess(APawn* InPawn)
49{
50 Super::OnPossess(InPawn);
51 if (BehaviorTree) // UPROPERTY(EditAnywhere) TObjectPtr<UBehaviorTree>
52 RunBehaviorTree(BehaviorTree); // initializes & uses the Blackboard the BT references
53}
54```
55
56### 2. A priority tree (node structure)
57
58```text
59ROOT
60└── Selector (try combat, else investigate, else patrol)
61 ├── Sequence [Decorator: Blackboard 'TargetActor' Is Set, Observer Aborts: Both]
62 │ ├── Task: MoveTo (TargetActor) // latent: returns InProgress then Succeeded
63 │ └── Task: Attack
64 ├── Sequence [Decorator: 'LastKnownLocation' Is Set]
65 │ ├── Task: MoveTo (LastKnownLocation)
66 │ └── Task: Wait (3s) + clear key
67 └── Task: Patrol (BTTask_FindPatrolPoint -> MoveTo)
68```
69
70`Observer Aborts: Both` makes the combat branch interrupt patrol the instant `TargetActor` is
71set, and bail out when it's cleared — this is what makes the AI feel reactive.
72
73### 3. Updating the Blackboard from code (e.g. on seeing the player)
74
75```cpp
76void AEnemyAIController::SetTarget(AActor* Target)
77{
78 if (UBlackboardComponent* BB = GetBlackboardComponent())
79 BB->SetValueAsObject(TEXT("TargetActor"), Target); // key name must match the BB asset
80}
81// Clear with BB->ClearValue(TEXT("TargetActor")); to drop back to a lower-priority branch.
82```
83
84## Pitfalls
85
86- **AI never starts** — the pawn isn't possessed (set the Pawn's *Auto Possess AI* to "Placed
87 in World or Spawned" and assign the AIController), or `RunBehaviorTree` was never called.
88- **`MoveTo` instantly fails** — no NavMesh in the level (add a Nav Mesh Bounds Volume), or the
89 target is off the navmesh.
90- **Branch doesn't react to changes** — the gating Decorator's **Observer Aborts** is set to
91 None; set it to Self/Lower Priority/Both so the tree re-evaluates when the key changes.
92- **A task hangs the tree** — a custom task returned `InProgress` and never calls
93 `FinishLatentTask`. Always complete latent tasks.
94- **Blackboard key typos** — `SetValueAsObject("Taget", ...)` silently does nothing; match the
95 key name and type exactly, or use a cached `FBlackboardKeySelector`.
96- **Sequence vs Selector confusion** — Sequence = AND (stops on first failure); Selector = OR
97 (stops on first success). Swapping them inverts the behaviour.
98
99## References
100
101- For a **custom C++ `UBTTaskNode`** (instant and latent `ExecuteTask` returning `EBTNodeResult`,
102 with a `FBlackboardKeySelector`), read `references/custom-bttask.md`.
103- Primary docs: "Behavior Trees in Unreal Engine"
104 (`https://dev.epicgames.com/documentation/en-us/unreal-engine/behavior-trees-in-unreal-engine`).
105
106## Related skills
107
108- `game-ai` — engine-agnostic AI design (FSM, BT, steering, pathfinding choices).
109- `unreal-cpp-gameplay` — the AIController and pawn classes in C++.
110- `fps-shooter` / `tower-defense` — genres that compose enemy AI.