centered follow points

This commit is contained in:
Andrew Zhao 2015-11-29 18:58:00 -08:00
parent c10b5dd199
commit 5b42f9a588

View File

@ -1367,10 +1367,10 @@ public class Game extends BasicGameState {
followPoint.setAlpha(1f - ((progress - (t - step)) / (step * 2f))); followPoint.setAlpha(1f - ((progress - (t - step)) / (step * 2f)));
else else
followPoint.setAlpha(1f); followPoint.setAlpha(1f);
followPoint.draw(x, y); followPoint.drawCentered(x, y);
} }
} else } else
followPoint.draw(x, y); followPoint.drawCentered(x, y);
t = nextT; t = nextT;
} }
followPoint.setAlpha(1f); followPoint.setAlpha(1f);