mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-29 14:18:23 +07:00
Removed phase radius display *(see description)*
Phased radius has been proposed in numerous PRs, but I don't know how to handle it properly yet. New players may be confused about the extra circle/hexagon indicator around blocks - it's not clear what it means. An extra radius easy to implement, so I'll leave it out of this PR and handle it later.
This commit is contained in:
@ -79,15 +79,6 @@ public class ForceProjector extends Block{
|
||||
Lines.stroke(1f);
|
||||
Lines.poly(x * tilesize, y * tilesize, 6, radius);
|
||||
Draw.color();
|
||||
|
||||
float phaseBoostedRadius = radius + phaseRadiusBoost;
|
||||
Draw.color(Pal.gray);
|
||||
Lines.stroke(3f);
|
||||
Lines.poly(x * tilesize, y * tilesize, 6, phaseBoostedRadius);
|
||||
Draw.color(player.team().color);
|
||||
Lines.stroke(1f);
|
||||
Lines.poly(x * tilesize, y * tilesize, 6, phaseBoostedRadius);
|
||||
Draw.color();
|
||||
}
|
||||
|
||||
public class ForceProjectorEntity extends Building{
|
||||
|
Reference in New Issue
Block a user