This commit is contained in:
Tanasart 2023-12-06 16:37:05 +07:00
parent 04668a107d
commit 5ab5c94ca8
3 changed files with 4 additions and 3 deletions

View file

@ -1123,7 +1123,8 @@ function Node(_x, _y, _group = PANEL_GRAPH.getCurrentContext()) : __Node_Base(_x
switch(_node.type) {
case VALUE_TYPE.surface :
case VALUE_TYPE.dynaSurface :
return _node.getValue();
var val = _node.getValue();
return val;
}
return noone;