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

@ -27,7 +27,7 @@ allprojects {
appName = 'Mindustry'
gdxVersion = '1.9.8'
roboVMVersion = '2.3.0'
uCoreVersion = '484d62ff4bfe109c6af654f612debdb5ca27df76'
uCoreVersion = '92770a6b462953cb183e7d204f4fc8226b66b2a8'
getVersionString = {
String buildVersion = getBuildVersion()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 200 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 215 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 214 B

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();
}