mirror of
https://github.com/BlueMap-Minecraft/BlueMap.git
synced 2024-11-22 10:35:16 +01:00
Merge branch 'mc/1.13'
This commit is contained in:
commit
cbbcfa6d59
@ -77,8 +77,8 @@ public void writeJson(JsonWriter json) throws IOException {
|
||||
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();
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user