| 44 | } |
| 45 | |
| 46 | public void setSkinTopFront(int material, String main, String top, String front, Orientation orientation) { |
| 47 | this.skin[material] = new Skin(this.folder + main, this.folder + top, this.folder + front, orientation, this.textureScale); |
| 48 | } |
| 49 | |
| 50 | public void setSkinTopFrontBottom(int material, String main, String top, String front, String bottom) { |
| 51 | this.skin[material] = new Skin(this.folder + main, this.folder + top, this.folder + front, this.folder + bottom, Orientation.NORTH, this.textureScale); |