Minor tweaks

This commit is contained in:
Anuken
2020-05-10 17:22:13 -04:00
parent c0ea4737fd
commit 686c451ea6
4 changed files with 13 additions and 11 deletions
+8
View File
@@ -115,6 +115,14 @@ public class Drawf{
Draw.reset();
}
public static void select(float x, float y, float radius, Color color){
Lines.stroke(3f, Pal.gray);
Lines.square(x, y, radius + 1f);
Lines.stroke(1f, color);
Lines.square(x, y, radius);
Draw.reset();
}
public static void square(float x, float y, float radius, Color color){
Lines.stroke(3f, Pal.gray);
Lines.square(x, y, radius + 1f, 45);