This commit is contained in:
Vortrex
2021-06-21 15:06:38 -05:00
parent 853294eb67
commit 49dde311a2
18 changed files with 8020 additions and 152 deletions

View File

@@ -158,7 +158,7 @@ function toString(val) {
// ===========================================================================
function toVector3(x, y, z) {
return new Vec3(x, y, z);
return new Vec3(toFloat(x), toFloat(y), toFloat(z));
}
// ===========================================================================