1 parent 663861b commit 29f7d69Copy full SHA for 29f7d69
1 file changed
release-content/release-notes/bool_logic_nodes.md
@@ -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