enemy ai types

This commit is contained in:
the me 2022-08-18 19:26:10 -07:00
parent 0b371ac22d
commit a8ead4e8df
54 changed files with 620 additions and 14 deletions

View file

@ -1,3 +1,3 @@
function c_tiledist(x1, y1, x2, y2) {
return new vec2(abs(x1-y2), abs(y1-y2));
return new vec2(abs(x1-x2), abs(y1-y2));
}