ProtoFlux:Less Or Equal: Difference between revisions

From Resonite Wiki
Filled in this node page.
Fixed node visual.
 
Line 4: Line 4:
|Inputs=
|Inputs=
[
[
{"Name":"", "Type":"Dummy"},
{"Name":"A", "Type":"Dummy"},
{"Name":"", "Type":"Dummy"}
{"Name":"B", "Type":"Dummy"}
]
]
|Outputs=
|Outputs=
[
[
{"Name":"", "Type":"bool"}
{"Name":"*", "Type":"bool"}
]
]
|}}
|}}

Latest revision as of 13:15, 27 June 2024

A
*
B
Operators

The Less Or Equal node takes in 2 values and returns if the first value is smaller than or equal to the second value.

For other comparison nodes:
  • If you need to check if a value is greater than something else, use the Greater Than node instead.
  • If you need to check if a value is less than something else, use the Less Than node instead.
  • If you need to check if a value is greater than or equal to something else, use the Greater Or Equal node instead.

Inputs

A (Pseudo-Generic)

The first value.

B (Pseudo-Generic)

The second value.

Outputs

* (bool)

Returns if the first value is smaller than or equal to the second value.

See Also