Merge branch 'mc/1.13'

This commit is contained in:
Blue (Lukas Rieger) 2020-03-17 20:27:18 +01:00
commit cbbcfa6d59
2 changed files with 4 additions and 4 deletions

View File

@ -77,8 +77,8 @@ public class BufferAttribute {
json.name("array").beginArray();
for (int i = 0; i < values.length; i++) {
// rounding and remove ".0" to save string space
float d = Math.round(values[i] * 10000f) / 10000f;
if (d == (int) d) json.value((int) d);
double d = Math.round(values[i] * 10000d) / 10000d;
if (d == (long) d) json.value((long) d);
else json.value(d);
}
json.endArray();

View File

@ -1,4 +1,4 @@
![title-banner](https://bluecolored.de/paste/bluemap-title.jpg)
![title-banner](https://bluecolored.de/paste/BluemapBanner.png)
BlueMap is a tool that generates 3d-maps of your Minecraft worlds and displays them in your browser. Take a look at [this demo](https://bluecolored.de/bluemap). It is really easy to set up - almost plug-and-play - if you use the integrated web-server (optional).
@ -41,9 +41,9 @@ Here is a *(surely incomplete)* list of things that i want to include in future
- marker / region API
- free-flight-controls
- live player positions
- shaders for dynamic day/night
- more configurations
- easier mod-integration
- BlueMap as forge mod
- ability to display the world-border
- animated textures (if feasible)
- add support for models in obj format (if feasible)