Skip to content

Latest commit

 

History

History
101 lines (77 loc) · 999 Bytes

File metadata and controls

101 lines (77 loc) · 999 Bytes

int

int

Return Value

Type: int

JSON
{
  "Type": "int",
  "Name": "int",
  "Value": "0",
  "Category": 6,
  "InputPins": [],
  "OutputPins": [
    {
      "Id": "",
      "Type": "int"
    }
  ]
}

int(float)

Parameter

x Type: float

Return Value

Type: int

JSON
{
  "Type": "int(float)",
  "Name": "int(float)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "float"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "int"
    }
  ]
}

int(bool)

Parameter

x Type: bool

Return Value

Type: int

JSON
{
  "Type": "int(bool)",
  "Name": "int(bool)",
  "Category": 1,
  "InputPins": [
    {
      "Connection": null,
      "Id": "x",
      "Type": "bool"
    }
  ],
  "OutputPins": [
    {
      "Id": "",
      "Type": "int"
    }
  ]
}