Skip to content

Commit 7e436f4

Browse files
authored
Expose the secondary input for Logical And and Or nodes (#3711)
1 parent f36d455 commit 7e436f4

File tree

1 file changed

+2
-0
lines changed
  • node-graph/nodes/math/src

1 file changed

+2
-0
lines changed

node-graph/nodes/math/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,7 @@ fn logical_or(
705705
/// One of the two boolean values, either of which may be true for the node to output true.
706706
value: bool,
707707
/// The other of the two boolean values, either of which may be true for the node to output true.
708+
#[expose]
708709
other_value: bool,
709710
) -> bool {
710711
value || other_value
@@ -717,6 +718,7 @@ fn logical_and(
717718
/// One of the two boolean values, both of which must be true for the node to output true.
718719
value: bool,
719720
/// The other of the two boolean values, both of which must be true for the node to output true.
721+
#[expose]
720722
other_value: bool,
721723
) -> bool {
722724
value && other_value

0 commit comments

Comments
 (0)