mirror of
https://github.com/damp11113-software/ccIDE.git
synced 2025-04-27 22:48:13 +00:00
33 lines
830 B
JSON
33 lines
830 B
JSON
{
|
|
"custom_math_operation": {
|
|
"message0": "%1 %2 %3",
|
|
"args0": [
|
|
{
|
|
"type": "field_dropdown",
|
|
"name": "OPERATOR",
|
|
"options": [
|
|
["+", "ADD"],
|
|
["-", "SUBTRACT"],
|
|
["*", "MULTIPLY"],
|
|
["/", "DIVIDE"]
|
|
]
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "NUM1",
|
|
"check": "Number"
|
|
},
|
|
{
|
|
"type": "input_value",
|
|
"name": "NUM2",
|
|
"check": "Number"
|
|
}
|
|
],
|
|
"inputsInline": true,
|
|
"output": "Number",
|
|
"colour": 230,
|
|
"tooltip": "Perform a mathematical operation",
|
|
"helpUrl": ""
|
|
}
|
|
}
|