We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36d455 commit 7e436f4Copy full SHA for 7e436f4
node-graph/nodes/math/src/lib.rs
@@ -705,6 +705,7 @@ fn logical_or(
705
/// One of the two boolean values, either of which may be true for the node to output true.
706
value: bool,
707
/// The other of the two boolean values, either of which may be true for the node to output true.
708
+ #[expose]
709
other_value: bool,
710
) -> bool {
711
value || other_value
@@ -717,6 +718,7 @@ fn logical_and(
717
718
/// One of the two boolean values, both of which must be true for the node to output true.
719
720
/// The other of the two boolean values, both of which must be true for the node to output true.
721
722
723
724
value && other_value
0 commit comments