Fix plant texture coordinates

origin
Joshua Sigona 3 years ago
parent d1f61e878c
commit c9366ba541
  1. 8
      models/plant.obj
  2. 8
      src/sig/SigRenderer.java

@ -6,10 +6,10 @@ v 1 0 0 #5
v 1 1 0 #6
v 0 1 1 #7
v 0 0 1 #8
vt 0 0 #1
vt 0 1 #2
vt 1 1 #3
vt 1 0 #4
vt 0 1 #1
vt 0 0 #2
vt 1 0 #3
vt 1 1 #4
f 1/1 3/3 2/2
f 1/1 4/4 3/3
f 1/1 2/2 3/3

@ -401,7 +401,9 @@ public class SigRenderer implements WindowFocusListener,KeyListener,MouseListene
Random r = new Random(438107);
for (int x=0;x<64;x++) {
for (int z=0;z<64;z++) {
addBlock(new Vector(x,0,z),Cube.class,BlockType.GRASS,FacingDirection.SOUTH);
addBlock(new Vector(x,0,z),Cube.class,BlockType.SOIL_WET,FacingDirection.SOUTH);
addBlock(new Vector(x,1,z),Plant.class,BlockType.valueOf("WHEAT_"+(r.nextInt(7))),FacingDirection.SOUTH);
//addBlock(new Vector(x,1,z),Staircase.class,BlockType.JUNGLE_PLANK,FacingDirection.SOUTH);
//addBlock(new Vector(x,2,z),Staircase.class,BlockType.SPRUCE_PLANK,FacingDirection.SOUTH);
/*for (int y=1;y<r.nextInt(5);y++) {
@ -428,10 +430,6 @@ public class SigRenderer implements WindowFocusListener,KeyListener,MouseListene
}*/
}
}
addBlock(new Vector(31,1,31),Plant.class,BlockType.SUGARCANE,FacingDirection.NORTH);
addBlock(new Vector(31,2,31),Plant.class,BlockType.SUGARCANE,FacingDirection.NORTH);
addBlock(new Vector(31,3,31),Plant.class,BlockType.SUGARCANE,FacingDirection.NORTH);
addBlock(new Vector(31,4,31),Plant.class,BlockType.SUGARCANE,FacingDirection.NORTH);
/*addBlock(new Vector(31,2,32),Staircase.class,BlockType.PLANKS,FacingDirection.EAST);
addBlock(new Vector(31,3,33),Staircase.class,BlockType.PLANKS,FacingDirection.WEST);
addBlock(new Vector(31,4,34),Staircase.class,BlockType.PLANKS,FacingDirection.SOUTH);

Loading…
Cancel
Save