Fill.polyTri replaced

This commit is contained in:
Anuken
2018-09-10 13:14:43 -04:00
parent 66fcf84688
commit 2da0862cb2
7 changed files with 3 additions and 3 deletions

View File

@@ -222,7 +222,7 @@ public class ForceProjector extends Block {
@Override
public void draw(){
Draw.color(Palette.accent);
Fill.polyTri(x, y, 6, realRadius(entity));
Fill.poly(x, y, 6, realRadius(entity));
Draw.color();
}
@@ -231,7 +231,7 @@ public class ForceProjector extends Block {
Draw.color(Color.WHITE);
Draw.alpha(entity.hit);
Fill.polyTri(x, y, 6, realRadius(entity));
Fill.poly(x, y, 6, realRadius(entity));
Draw.color();
}