Skip to content

Commit e89d2f5

Browse files
committed
Expose the secondary input for Logical And node
1 parent 5ace2c9 commit e89d2f5

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

  • node-graph/nodes/math/src

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,7 @@ fn logical_and(
717717
/// One of the two boolean values, both of which must be true for the node to output true.
718718
value: bool,
719719
/// The other of the two boolean values, both of which must be true for the node to output true.
720+
#[expose]
720721
other_value: bool,
721722
) -> bool {
722723
value && other_value

0 commit comments

Comments
 (0)