looks like battle animations to me

This commit is contained in:
the me 2022-08-23 01:34:45 -07:00
parent 64a74d6f36
commit b0e718f879
12 changed files with 107 additions and 20 deletions

View file

@ -1,5 +1,5 @@
function st_standing() {
x = pos.x*global.tilesize.x+global.tilesize.x/2;
y = pos.y*global.tilesize.y+global.tilesize.y/2;
x = lerp(x, pos.x*global.tilesize.x+global.tilesize.x/2, .1);
y = lerp(y, pos.y*global.tilesize.y+global.tilesize.y/2, .1);
//log(x, y);
}