ProtoFlux:GreaterThan: Difference between revisions

From Resonite Wiki
Filled in this node page.
m YoshBot moved page ProtoFlux:Greater Than to ProtoFlux:GreaterThan: Automated: removing spaces from ProtoFlux namespace
 
(One intermediate revision by one other user not shown)
Line 9: Line 9:
|Outputs=
|Outputs=
[
[
{"Name":"*", "Type":"Dummy"}
{"Name":"*", "Type":"bool"}
]
]
|}}
|}}
Line 23: Line 23:
== Inputs ==
== Inputs ==


=== A ([[Impulses|Call]]) ===  
=== A (Pseudo-Generic) ===  


The first value.
The first value.


=== B ([[Type:float3|float3]]) ===
=== B (Pseudo-Generic) ===


The second value.
The second value.

Latest revision as of 00:22, 21 August 2025

>
A
*
B
Operators

The Greater Than node takes in 2 values and returns if the first value is larger than the second value.

For other comparison nodes:
  • 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.
  • If you need to check if a value is less than or equal to something else, use the Less 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 larger than the second value.

See Also