Get Transform Node Replacement Update
This commit is contained in:
@ -10,7 +10,7 @@ class GetTransformNode extends LogicNode {
|
||||
|
||||
override function get(from: Int): Dynamic {
|
||||
var object: Object = inputs[0].get();
|
||||
var relative: Bool = inputs[1].get();
|
||||
var relative: Bool = inputs.length > 1 && inputs[1] != null ? inputs[1].get() : false;
|
||||
|
||||
if (object == null) return null;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user