Woops remove Z arg from vec2 util

This commit is contained in:
Vortrex
2021-01-05 01:25:55 -06:00
parent 705d871a64
commit 25be54cdcf

View File

@@ -37,8 +37,8 @@ function toVector3(x, y, z) {
// ---------------------------------------------------------------------------
function toVector2(x, y, z) {
return new Vec2(x, y, z);
function toVector2(x, y) {
return new Vec2(x, y);
}
// ---------------------------------------------------------------------------