more latitude tilt, better attack anims, addressed aesthetic concerns, deleted dead assets

This commit is contained in:
jshipsey
2020-07-04 05:02:54 -04:00
parent 8a0b7fd173
commit ca9ae13527
404 changed files with 664 additions and 1726 deletions

View File

@ -277,7 +277,7 @@ where
)
};
let transition =
|a: &Vec3<i32>, b: &Vec3<i32>| 1.0 + endf.distance((*b).map(|e| e as f32 + 0.5)) * 0.02;
|_a: &Vec3<i32>, b: &Vec3<i32>| 1.0 + endf.distance((*b).map(|e| e as f32 + 0.5)) * 0.02;
let satisfied = |pos: &Vec3<i32>| pos == &end;
let mut new_astar = match astar.take() {