Javastyle array

This commit is contained in:
thatsIch
2015-09-30 14:25:28 +02:00
parent 8b3a954f73
commit 2f65d41cd1
2 changed files with 18 additions and 6 deletions
@@ -386,8 +386,17 @@ public class ModelGenerator
{
return MinecraftForgeClient.getRenderLayer() == EnumWorldBlockLayer.TRANSLUCENT;
}
final float quadsUV[] = new float[] { 0,0,1,1,0,0,1,1};
final float[] quadsUV = new float[] {
0,
0,
1,
1,
0,
0,
1,
1
};
public EnumSet<EnumFacing> renderFaces = EnumSet.allOf(EnumFacing.class);
public boolean flipTexture=false;
private List<SMFace> faces = new ArrayList();