Skip to content

Commit

Permalink
1.0.3 - Add culling
Browse files Browse the repository at this point in the history
  • Loading branch information
CodenameRevy committed Oct 9, 2020
1 parent 6e406d5 commit 68074cb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ apply plugin: 'net.minecraftforge.gradle'
apply plugin: 'idea'
apply plugin: 'maven-publish'

version = '1.0.2'
version = '1.0.3'
group = 'com.codenamerevy.horizontalpanes' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'horizontalpanes'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@
"to": [0.001, 8, 16],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 8]},
"faces": {
"east": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge"},
"west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge"}
"east": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge", "cullface": "west"},
"west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge", "cullface": "west"}
}
},
{
"name": "east",
"from": [15.999, 6, 0],
"to": [15.999, 8, 16],
"faces": {
"east": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge"},
"west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge"}
"east": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge", "cullface": "east"},
"west": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge", "cullface": "east"}
}
},
{
Expand All @@ -50,8 +50,8 @@
"to": [16, 8, 0.001],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 8]},
"faces": {
"north": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge"},
"south": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge"}
"north": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge", "cullface": "north"},
"south": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge", "cullface": "north"}
}
},
{
Expand All @@ -60,8 +60,8 @@
"to": [16, 8, 15.999],
"rotation": {"angle": 0, "axis": "y", "origin": [8, 14, 24]},
"faces": {
"north": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge"},
"south": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge"}
"north": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge", "cullface": "south"},
"south": {"uv": [7, 0, 9, 16], "rotation": 90, "texture": "#edge", "cullface": "south"}
}
}
],
Expand Down

0 comments on commit 68074cb

Please sign in to comment.