1 Commits
v1.2.0 ... main

Author SHA1 Message Date
Eric Tuvesson
50677fd529 fix(runtime): Script node not handling types correctly (#97) 2025-06-24 18:26:58 +02:00

View File

@@ -500,8 +500,8 @@ function onFrameStart() {
}
function _typename(type) {
if (typeof type === 'string') return type;
else return type.name;
if (typeof type === 'object') return type.name;
return type;
}
function userInputSetter(name, value) {