stage3: align swarm fairies

This commit is contained in:
laochailan 2022-10-16 10:27:24 -04:00 committed by Andrei Alexeyev
parent 2556a0de9e
commit 33b65b7fbe
No known key found for this signature in database
GPG key ID: 72D26128040B9690

View file

@ -84,7 +84,7 @@ TASK(swarm_trail_fairy, { cmplx pos; MoveParams move; }) {
play_sfx("shot1");
for(int i = 0; i < nrow - (t&1); i++) {
real x = ((i+0.5*(t&1))/(real)(nrow-1) - 0.5);
real x = (i/(real)(nrow-1) - 0.5);
INVOKE_TASK(swarm_trail_proj, e->pos, ARGS.move.velocity, 3*aim, x, .width = width);
}