Pins
TBD
Pins are subcomponents to Nodes. Each node can have 1 - n different Pins. Pins can only be connected to Pins of the same Data Type.
List of Data Types
Data Type | Description |
Bool | A bool type can hold two values: True or False. It's like a switch that's either on or off, and it's used in programming for logic and decision-making. |
String | A string variable can hold text. It can be anything from a single character (like "A") to a whole sentence (like "Hello, world!") or even a massive document. Think of it as a container for letters, numbers, and symbols, all strung together. |
Integer | Holds whole numbers, no decimals. Think of counting numbers: 1, 2, 10, -5, 0, etc. 64 bit, signed. |
Float | Holds numbers with decimal points, allowing for more precision. Think of things like 3.14, -2.5, 0.001, etc. 64 bit. |
Reserved Pin Names
Name | Purpose |
var_reference_in | Used for the referencing of Variables. The Data Type sets the scope of allowed referenced types. The default_value is the name of the variable. The variable itself can be fetched from the Execution Context. |
exec_in | Control Flow Pins without a name rendered. |
exec_out | Control Flow Pins without a name rendered. |