Incari Studio
1.0.0
1.0.0
  • INCARI Studio Documentation
  • Getting Started
    • Minimum Requirements *
    • Installation and License *
    • Creating a Project
    • Project Objects
      • Screen
      • Scene
    • Scene Objects *
      • Camera
      • Group
      • Mesh
      • Lights
      • List Widget
      • Text
      • Web Sprite
    • Attributes
      • Common Attributes
        • Object
        • Rotation Pivot
        • Sprite
        • Transformation
      • Attribute Types
        • Boolean Attributes
        • Numerical Attributes
        • Color Attributes
        • Asset/Object Attribute
    • Interface *
      • Modules *
        • Logic Editor
        • Project Outliner
  • Toolbox
    • Date Time
      • Now (UTC)
      • System Time
      • Timezone Value
    • Flow Control
      • Branch
      • Is Equal
      • Is Greater Equal
      • Is Less Equal
      • Select Data
      • Sequential
      • Switch
      • Toggle
  • Math
    • Absolute
    • Add
    • Average
    • Boolean
      • AND
      • Negate
      • OR
    • Ceil
    • Clamp
    • Decrement
    • Divide
    • Floor
    • Increment
    • Interpolate
    • Logarithm
    • Math Constant
    • Maximum
    • Minimum
    • Modulo
    • Multiply
    • Power
    • Range Mapper
    • Root
    • Subtract
    • Trigonometry
      • Arc Cosine
      • Arc Sine
      • Arc Tangent
      • Cosine
      • Radian-Degree Converter
      • Sine
      • Tangent
Powered by GitBook
On this page
  • Overview
  • Attributes
  • Inputs
  • Outputs
  • Examples
  • External Links

Was this helpful?

  1. Toolbox
  2. Flow Control

Is Greater Equal

PreviousIs EqualNextIs Less Equal

Last updated 3 years ago

Was this helpful?

Overview

IsGreaterEqual is a Relational Expression Node, which compares two Input Values, and returns a Boolean, based on whether or not the Value of Input A is greater than Input B. If it is, the returned Value will be true, and if not, it will return false.

Depending on the setting in the Mode Attribute, the Node may also return true if the Values are equal.

Because the IsGreaterEqual and IsLessEqual compare the difference in Value, these Nodes can only be used with Numerical Types.

Relational Expressions are frequently used alongside Branch Nodes and Logical Operator Nodes to manipulate the flow of logic and are essential when building any complex applications.

Attributes

Attribute
Type
Description

Data Type

Drop-down

The type of data that will be plugged into the A and B Sockets.

Mode

Drop-down

Determines whether equal Values will return true (IsGreaterEqual), or they will return false (IsGreater).

Inputs

Input
Type
Description

Pulse Input (►)

Pulse

A standard Input Pulse, to trigger the execution of the Node.

A

Defined in the Data Type Attribute.

The Value to be compared with B.

B

Defined in the Data Type Attribute.

The Value to be compared with A.

Outputs

Output
Type
Description

Pulse Output (►)

Pulse

A standard Output Pulse, to move onto the next Node along the Logic Branch, once this Node has finished its execution.

C

Bool

Returns true if A is greater (or equal, depending on Mode) than B. If not, then it returns false.

Examples

Below, in the top two examples, we can see the difference between the IsGreaterEqual and IsGreater modes and how even small differences in Value affect the outcome of the evaluation.

Mode

A

B

C

IsGreater

123

123

False

IsGreaterEqual

123

123

True

IsGreater

384

384.0001

False

IsGreater

365

180

True

External Links

on Wikipedia.

Relational operator