Misc cleanup

This commit is contained in:
Anuken
2021-01-19 19:55:21 -05:00
parent c53a6a7c04
commit fa8d43bbc9
7 changed files with 17 additions and 8 deletions

View File

@@ -90,7 +90,7 @@ public class OverlayRenderer{
}
for(int i = 0; i < 4; i++){
float rot = i * 90f + 45f + (-Time.time / 1.5f) % 360f;
float rot = i * 90f + 45f + (-Time.time) % 360f;
float length = select.hitSize() * 1.5f + (unitFade * 2.5f);
Draw.rect("select-arrow", select.x + Angles.trnsx(rot, length), select.y + Angles.trnsy(rot, length), length / 1.9f, length / 1.9f, rot - 135f);
}