mirror of
https://github.com/fluxscape/fluxscape.git
synced 2026-01-09 22:02:55 +01:00
fix(runtime): Script node not handling types correctly (#97)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user