LN Vector Math Fix

Fixed error:
On static platforms, null can't be used as basic type Float
This commit is contained in:
E1e5en 2020-11-12 06:56:35 +03:00
parent 25be45bc9e
commit 91a2a3e00f

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++;
}