This commit is contained in:
Anuken
2020-04-15 23:12:18 -04:00
parent 79c8548171
commit 8a01b87c99
2 changed files with 10 additions and 7 deletions

View File

@@ -15,6 +15,12 @@ import static mindustry.Vars.renderer;
public class Drawf{
public static void shadow(float x, float y, float rad){
Draw.color(0, 0, 0, 0.4f);
Draw.rect("circle-shadow", x, y, rad, rad);
Draw.color();
}
public static void dashCircle(float x, float y, float rad, Color color){
Lines.stroke(3f, Pal.gray);
Lines.dashCircle(x, y, rad);