Skip to content

Commit 29f7d69

Browse files
committed
docs: add release notes for boolean logic nodes
1 parent 663861b commit 29f7d69

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
title: Boolean Logic Nodes
3+
authors: ["@baszalmstra"]
4+
pull_requests: []
5+
---
6+
7+
Three new boolean logic nodes have been added to complement the existing `ConstBool` node:
8+
9+
- **`NotBool`** (`! Not`): Logical NOT — inverts a boolean input
10+
- **`AndBool`** (`&& And`): Logical AND — true only when both inputs are true
11+
- **`OrBool`** (`|| Or`): Logical OR — true when either input is true
12+
13+
These enable combining boolean conditions within the graph — e.g. `is_grounded AND is_moving` to drive blend parameters or FSM transitions.

0 commit comments

Comments
 (0)