Skip to content

Latest commit

 

History

History
101 lines (77 loc) · 1014 Bytes

File metadata and controls

101 lines (77 loc) · 1014 Bytes

bool

bool

Return Value

Type: bool

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

bool(float)

Parameter

x Type: float

Return Value

Type: bool

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

bool(int)

Parameter

x Type: int

Return Value

Type: bool

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