fix(runtime): Script node not handling types correctly (#97)

This commit is contained in:
Eric Tuvesson
2025-06-24 18:26:58 +02:00
committed by GitHub
parent 307a13f7be
commit 50677fd529

View File

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