Tech tree tweaks

This commit is contained in:
Anuken
2022-02-13 21:43:45 -05:00
parent 3ebdb5309e
commit 6c30f58507
5 changed files with 7 additions and 3 deletions

View File

@@ -119,7 +119,7 @@ public class Drawf{
}
public static void dashLineDst(Color color, float x, float y, float x2, float y2){
dashLine(color, x, y, x2, y2, (int)(Mathf.dst(x, y, x2, y2) / tilesize));
dashLine(color, x, y, x2, y2, (int)(Mathf.dst(x, y, x2, y2) / tilesize * 1.6f));
}
public static void dashLine(Color color, float x, float y, float x2, float y2){