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 90dff21 commit c182757Copy full SHA for c182757
core/src/main/java/de/bluecolored/bluemap/core/map/hires/ArrayTileModel.java
@@ -205,6 +205,17 @@ 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 + 4 ];
214
+ uv[index + 1] = uv[index + 4 + 1];
215
216
+ uv[index + 4 ] = x;
217
+ uv[index + 4 + 1] = y;
218
219
return this;
220
}
221
0 commit comments