Skip to content

Commit b2c73fa

Browse files
jsjgdhhe1senbrg
authored andcommitted
Expose the secondary input for Logical and nodes
1 parent ba361cd commit b2c73fa

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • node-graph/nodes/math/src

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)