Implement reroute node code

This commit is contained in:
stefnotch
2021-02-25 22:01:45 +01:00
parent 9265f23681
commit fd802e54fb
2 changed files with 11 additions and 0 deletions

View File

@@ -732,6 +732,12 @@ void VisjectExecutor::ProcessGroupTools(Box* box, Node* node, Value& value)
value = Scripting::FindObject<Actor>((Guid)node->Values[0]);
break;
}
case 29:
{
value = tryGetValue(node->GetBox(0), Value::Zero);
break;
}
default:
break;
}