V0.5 : If, while, for and much more :) !
News
New node "IF":
- Take one condition (as boolean) in inputs
- Return 3 EXEC output: when the conditon is true, when the condition is false (else) and when the "if node is over" (next to end)
New node "WHILE":
- Take one condition as input
- Return 2 EXEC: one about the loop body, last one once the condition is true (next to end)
New node "FOR" (Range):
- Take one variable (only the name, not a variable you created) as input
- Take number for start
- Take number for end
- Take number for step
New nodes to convert:
- tonumber
- tostring
New nodes about booleans:
andnot<=>===~=<>
New way to create custom statement (it's if definition):
{
"color": [200,200,200],
"type": "METHOD",
"inputs": {
"condition": {
"defaultValue": "true"
}
},
"outputs": [],
"exec": ["True", "False", "Continue"]
}Example
if
while
for (range)
Next updates
- Arrays & Dict
- Custom function
- Multiple scripts
- Custom events (from Roblox)