From da7d53d625eea8733d3d3fc06d3ffe07b5c6b735 Mon Sep 17 00:00:00 2001 From: Vishnu Tejas E Date: Tue, 3 Feb 2026 06:52:46 +0530 Subject: [PATCH] Expose the secondary input for Logical And and Or nodes --- node-graph/nodes/math/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node-graph/nodes/math/src/lib.rs b/node-graph/nodes/math/src/lib.rs index f826f123ed..36b7e46da8 100644 --- a/node-graph/nodes/math/src/lib.rs +++ b/node-graph/nodes/math/src/lib.rs @@ -705,6 +705,7 @@ fn logical_or( /// One of the two boolean values, either of which may be true for the node to output true. value: bool, /// The other of the two boolean values, either of which may be true for the node to output true. + #[expose] other_value: bool, ) -> bool { value || other_value @@ -717,6 +718,7 @@ fn logical_and( /// One of the two boolean values, both of which must be true for the node to output true. value: bool, /// The other of the two boolean values, both of which must be true for the node to output true. + #[expose] other_value: bool, ) -> bool { value && other_value