Take two Float values and perform a relational operation on them. 

Figure 1: Float relational operator Node

Parameters

    • Input A - First float value for evaluation.
    • Input B - Second float value for evaluation.  
    • Relational Operator - Relational operation to perform.
      • Less than [A < B]
      • Greater than [A > B]
      • Equal [A == B]
      • Not equal [A != B]
      • Less or equal [A <= B]
      • Greater or equal [A >= B]