Merge pull request #2004 from E1e5en/ln-vector-math-fix

LN Vector Math Fix
This commit is contained in:
Lubos Lenco 2020-11-12 08:09:38 +01:00 committed by GitHub
commit aa9a93b530
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -104,7 +104,6 @@ class VectorMathNode extends LogicNode {
var i = 1;
while (i < inputs.length) {
p2_f = inputs[i].get();
if (p2_f == null) return null;
res_v.mult(p2_f);
i++;
}