We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 047b989 commit 90dff21Copy full SHA for 90dff21
core/src/main/java/de/bluecolored/bluemap/core/map/hires/ArrayTileModel.java
@@ -205,17 +205,6 @@ public ArrayTileModel invertOrientation(int face) {
205
position[index + 6 + 1] = y;
206
position[index + 6 + 2] = z;
207
208
- // swap first and last uvs
209
- index = face * FI_UV;
210
- x = uv[index ];
211
- y = uv[index + 1];
212
-
213
- uv[index ] = uv[index + 2 ];
214
- uv[index + 1] = uv[index + 2 + 1];
215
216
- uv[index + 2 ] = x;
217
- uv[index + 2 + 1] = y;
218
219
return this;
220
}
221
0 commit comments