rm files
Before Width: | Height: | Size: 727 B |
Before Width: | Height: | Size: 4.9 KiB |
Before Width: | Height: | Size: 910 B |
@ -1,58 +0,0 @@
|
||||
import argparse
|
||||
import sys
|
||||
import logging
|
||||
import re
|
||||
import json
|
||||
from pathlib import Path
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
def main() -> int:
|
||||
# Handle program arguments
|
||||
ap = argparse.ArgumentParser(description='Fixes the names of Xaero\'s Minimap tiles to be used in leaflet')
|
||||
ap.add_argument('input', help='The input directory containing the tiles', type=Path)
|
||||
ap.add_argument('-v', '--verbose', help='Enable verbose logging', action='store_true')
|
||||
args = ap.parse_args()
|
||||
|
||||
# Configure logging
|
||||
logging.basicConfig(
|
||||
level=logging.DEBUG if args.verbose else logging.INFO,
|
||||
format='%(levelname)s: %(message)s',
|
||||
)
|
||||
|
||||
# Find all PNGs
|
||||
pngs = list(args.input.glob('*.png'))
|
||||
|
||||
# Look for PNGs with the bad format (0_0_x-1_z-1.png)
|
||||
name_re = re.compile(r"(\d+)_(\d+)_x(-?\d+)_z(-?\d+).png")
|
||||
tiles = []
|
||||
for file in pngs:
|
||||
file_name = file.name
|
||||
match = name_re.match(file_name)
|
||||
if match:
|
||||
# Extract the coordinates
|
||||
chunk_x, chunk_z, world_x, world_z = match.groups()
|
||||
|
||||
# Rename the file
|
||||
new_name = f"xaero_tile_{world_x}_{world_z}.png"
|
||||
new_path = file.with_name(new_name)
|
||||
logger.info(f"Renaming {file_name} to {new_name}")
|
||||
file.rename(new_path)
|
||||
|
||||
tiles.append({
|
||||
"x": int(world_x),
|
||||
"z": int(world_z),
|
||||
"chunk_x": int(chunk_x),
|
||||
"chunk_z": int(chunk_z),
|
||||
"image": new_name
|
||||
})
|
||||
|
||||
# Write a JSON file with the tile data
|
||||
with open(args.input / "tiles.json", "w") as f:
|
||||
json.dump(tiles, f, indent=4)
|
||||
|
||||
|
||||
return 0
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
@ -1,138 +0,0 @@
|
||||
const TILE_SIZE = 1024;
|
||||
|
||||
|
||||
// Set up the map
|
||||
var map = L.map('map', {
|
||||
crs: L.CRS.Simple,
|
||||
minZoom: -3,
|
||||
maxZoom: 3,
|
||||
backgroundColor: '#000000',
|
||||
});
|
||||
map.attributionControl.addAttribution('With help from: DraconicNEO');
|
||||
|
||||
// Create storage for the tile layers
|
||||
var layers = {
|
||||
"Blank": L.layerGroup(),
|
||||
"Caves": L.layerGroup(),
|
||||
"Surface": L.layerGroup().addTo(map),
|
||||
};
|
||||
|
||||
// Make a request to discover cave tiles
|
||||
fetch('/map-data/minecraft/mc-sdf-org/tiles/caves/tiles.json')
|
||||
.then(response => response.json())
|
||||
.then(tiles => {
|
||||
// Add each tile
|
||||
tiles.forEach(tile => {
|
||||
var bounds = [[tile.z * -1, tile.x], [(tile.z + TILE_SIZE) * -1, tile.x + TILE_SIZE]];
|
||||
var image = L.imageOverlay(`/map-data/minecraft/mc-sdf-org/tiles/caves/${tile.image}`, bounds).addTo(layers.Caves);
|
||||
});
|
||||
});
|
||||
fetch('/map-data/minecraft/mc-sdf-org/tiles/surface/tiles.json')
|
||||
.then(response => response.json())
|
||||
.then(tiles => {
|
||||
// Add each tile
|
||||
tiles.forEach(tile => {
|
||||
var bounds = [[tile.z * -1, tile.x], [(tile.z + TILE_SIZE) * -1, tile.x + TILE_SIZE]];
|
||||
var image = L.imageOverlay(`/map-data/minecraft/mc-sdf-org/tiles/surface/${tile.image}`, bounds).addTo(layers.Surface);
|
||||
});
|
||||
});
|
||||
|
||||
// Create overlay layers
|
||||
var overlayLayers = {
|
||||
"Subway Stations": L.layerGroup().addTo(map),
|
||||
"Subway Lines": L.layerGroup().addTo(map),
|
||||
}
|
||||
var clickable_areas = L.layerGroup().addTo(map);
|
||||
|
||||
// Add markers
|
||||
fetch('/map-data/minecraft/mc-sdf-org/markers.json')
|
||||
.then(response => response.json())
|
||||
.then(markers => {
|
||||
// Subway Stations
|
||||
markers.waypoints.subway_stations.forEach(waypoint => {
|
||||
var marker = L.marker([waypoint.z * -1, waypoint.x], { icon: L.icon({ iconUrl: '/map-data/icons/subway.png', iconSize: [16, 16], }) }).addTo(overlayLayers["Subway Stations"]);
|
||||
marker.bindPopup(waypoint.name);
|
||||
});
|
||||
|
||||
// Areas
|
||||
markers.areas.forEach(area => {
|
||||
var bounds = [
|
||||
[area.top_left.z * -1, area.top_left.x],
|
||||
[area.bottom_right.z * -1, area.bottom_right.x],
|
||||
];
|
||||
var area_obj = L.rectangle(bounds, { color: "#00000000", fillOpacity: 0.2 }).addTo(clickable_areas);
|
||||
area_obj.bindPopup(area.name);
|
||||
});
|
||||
});
|
||||
fetch('/map-data/minecraft/mc-sdf-org/subway_lines.json')
|
||||
.then(response => response.json())
|
||||
.then(lines => {
|
||||
lines.forEach(line => {
|
||||
// // Iterate over each point pair
|
||||
// line.point_pairs.forEach(pair => {
|
||||
// var map_line_obj = L.polyline([
|
||||
// [pair.from.z * -1, pair.from.x],
|
||||
// [pair.to.z * -1, pair.to.x],
|
||||
// ], {
|
||||
// color: line.color,
|
||||
// opacity: 0.5,
|
||||
|
||||
// }).addTo(overlayLayers["Subway Lines"]);
|
||||
// map_line_obj.bindPopup(line.name);
|
||||
// });
|
||||
|
||||
// Each line has a list of line segments
|
||||
line.line_segments.forEach(segment => {
|
||||
// Each line segment is a list of coordinates
|
||||
var coords = segment.map(coord => [coord.z * -1, coord.x]);
|
||||
var map_line_obj = L.polyline(coords, {
|
||||
color: line.color,
|
||||
opacity: 0.75,
|
||||
}).addTo(overlayLayers["Subway Lines"]);
|
||||
map_line_obj.bindPopup(line.name);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
// Add the layers to the map
|
||||
L.control.layers(layers, overlayLayers).addTo(map);
|
||||
|
||||
// Make the viewport look at the center of the map
|
||||
map.fitBounds([
|
||||
[-TILE_SIZE, -TILE_SIZE],
|
||||
[TILE_SIZE, TILE_SIZE]
|
||||
]);
|
||||
|
||||
// Add a CSS rule to pixelate the image only when zoomed in
|
||||
map.on('zoomend', function (e) {
|
||||
let element = document.querySelector('#leaflet-pixelator');
|
||||
if (map.getZoom() >= 2) {
|
||||
if (element) return;
|
||||
document.head.insertAdjacentHTML('beforeend', '<style id="leaflet-pixelator">.leaflet-image-layer { image-rendering: pixelated; }</style>');
|
||||
} else {
|
||||
if (element) {
|
||||
element.remove();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// Create a mouse position display
|
||||
var mousePosition = L.control({ position: 'bottomleft' });
|
||||
mousePosition.onAdd = function (map) {
|
||||
this._div = L.DomUtil.create('div', 'mouse-position');
|
||||
this._div.style.padding = '5px';
|
||||
this._div.style.backgroundColor = 'rgba(255, 255, 255, 0.5)';
|
||||
this._div.style.border = '1px solid #000000';
|
||||
this._div.style.borderRadius = '5px';
|
||||
this._div.style.display = 'none';
|
||||
return this._div;
|
||||
};
|
||||
mousePosition.addTo(map);
|
||||
|
||||
// Update the mouse position display
|
||||
map.on('mousemove', function (e) {
|
||||
var x = Math.floor(e.latlng.lng);
|
||||
var z = Math.floor(e.latlng.lat * -1);
|
||||
mousePosition._div.innerHTML = `X: ${x}, Z: ${z}`;
|
||||
mousePosition._div.style.display = '';
|
||||
});
|
@ -1,560 +0,0 @@
|
||||
{
|
||||
"waypoints": {
|
||||
"subway_stations": [
|
||||
{
|
||||
"x": -252,
|
||||
"z": -433,
|
||||
"name": "Northern & Bee Station"
|
||||
},
|
||||
{
|
||||
"x": -220,
|
||||
"z": -186,
|
||||
"name": "Monument Place Station"
|
||||
},
|
||||
{
|
||||
"x": -236,
|
||||
"z": -181,
|
||||
"name": "[ZOG] Zombie Grinder Station"
|
||||
},
|
||||
{
|
||||
"x": -204,
|
||||
"z": 578,
|
||||
"name": "[PMI] Prismarine Inn Station"
|
||||
},
|
||||
{
|
||||
"x": -322,
|
||||
"z": 364,
|
||||
"name": "[DSW] Dismal Swamp Station"
|
||||
},
|
||||
{
|
||||
"x": -322,
|
||||
"z": 41,
|
||||
"name": "[APY] Apiary Station"
|
||||
},
|
||||
{
|
||||
"x": -316,
|
||||
"z": 43,
|
||||
"name": "[APY] Apiary Station"
|
||||
},
|
||||
{
|
||||
"x": -270,
|
||||
"z": 5,
|
||||
"name": "Southwest Blvd"
|
||||
},
|
||||
{
|
||||
"x": -263,
|
||||
"z": -45,
|
||||
"name": "Southlands"
|
||||
},
|
||||
{
|
||||
"x": -263,
|
||||
"z": -85,
|
||||
"name": "Three Sisters"
|
||||
},
|
||||
{
|
||||
"x": -268,
|
||||
"z": -127,
|
||||
"name": "Small Hall Station"
|
||||
},
|
||||
{
|
||||
"x": -256,
|
||||
"z": -151,
|
||||
"name": "Monument Place Station"
|
||||
},
|
||||
{
|
||||
"x": -256,
|
||||
"z": -180,
|
||||
"name": "Zombie Grinder Station"
|
||||
},
|
||||
{
|
||||
"x": -242,
|
||||
"z": -227,
|
||||
"name": "DOJO St Station"
|
||||
},
|
||||
{
|
||||
"x": -202,
|
||||
"z": -229,
|
||||
"name": "New Cornick House Station"
|
||||
},
|
||||
{
|
||||
"x": -184,
|
||||
"z": -243,
|
||||
"name": "Wintergarden Station"
|
||||
},
|
||||
{
|
||||
"x": 225,
|
||||
"z": -293,
|
||||
"name": "[PRU] Pine Ruins Station"
|
||||
},
|
||||
{
|
||||
"x": 143,
|
||||
"z": -291,
|
||||
"name": "[CSD] Canalside Station"
|
||||
},
|
||||
{
|
||||
"x": -213,
|
||||
"z": -264,
|
||||
"name": "Spawn Central Station"
|
||||
},
|
||||
{
|
||||
"x": -510,
|
||||
"z": 137,
|
||||
"name": "[SWL] Southwest Landing Station"
|
||||
},
|
||||
{
|
||||
"x": -326,
|
||||
"z": 41,
|
||||
"name": "[APY] Apiary Station"
|
||||
},
|
||||
{
|
||||
"x": -229,
|
||||
"z": -181,
|
||||
"name": "[ZOG] Zombie Grinder Station"
|
||||
},
|
||||
{
|
||||
"x": -27,
|
||||
"z": 63,
|
||||
"name": "[WCP] Whitecaps Station"
|
||||
},
|
||||
{
|
||||
"x": -27,
|
||||
"z": 7,
|
||||
"name": "[MTV] Mountain Village Station"
|
||||
},
|
||||
{
|
||||
"x": -31,
|
||||
"z": -237,
|
||||
"name": "[ESJ] Eastside Transfer"
|
||||
},
|
||||
{
|
||||
"x": -245,
|
||||
"z": -49,
|
||||
"name": "[SOU] Southlands Terminal"
|
||||
},
|
||||
{
|
||||
"x": -218,
|
||||
"z": -137,
|
||||
"name": "Monument Place Station"
|
||||
},
|
||||
{
|
||||
"x": -213,
|
||||
"z": -252,
|
||||
"name": "Spawn Central Station"
|
||||
},
|
||||
{
|
||||
"x": -899,
|
||||
"z": -607,
|
||||
"name": "Mountain Station"
|
||||
},
|
||||
{
|
||||
"x": -900,
|
||||
"z": -4187,
|
||||
"name": "Mensa Club Station"
|
||||
},
|
||||
{
|
||||
"x": -1630,
|
||||
"z": -2316,
|
||||
"name": "Farmington Station"
|
||||
},
|
||||
{
|
||||
"x": -2143,
|
||||
"z": -2315,
|
||||
"name": "Village Layover Station"
|
||||
},
|
||||
{
|
||||
"x": -2135,
|
||||
"z": -1015,
|
||||
"name": "Twin Peaks Station"
|
||||
},
|
||||
{
|
||||
"x": -2143,
|
||||
"z": -1523,
|
||||
"name": "Witchy Swamp Station"
|
||||
},
|
||||
{
|
||||
"x": -2726,
|
||||
"z": -186,
|
||||
"name": "Ocean Overlook Station"
|
||||
},
|
||||
{
|
||||
"x": 927,
|
||||
"z": 1223,
|
||||
"name": "End Portal Station"
|
||||
},
|
||||
{
|
||||
"x": -1048,
|
||||
"z": -94,
|
||||
"name": "Craniumslows Station"
|
||||
},
|
||||
{
|
||||
"x": -1372,
|
||||
"z": 507,
|
||||
"name": "Sheep Station"
|
||||
},
|
||||
{
|
||||
"x": -1372,
|
||||
"z": 659,
|
||||
"name": "Cow Station"
|
||||
},
|
||||
{
|
||||
"x": -1372,
|
||||
"z": 1088,
|
||||
"name": "South Station"
|
||||
},
|
||||
{
|
||||
"x": -1568,
|
||||
"z": 909,
|
||||
"name": "1567 Station"
|
||||
},
|
||||
{
|
||||
"x": -1372,
|
||||
"z": 908,
|
||||
"name": "Magenta Station"
|
||||
},
|
||||
{
|
||||
"x": -700,
|
||||
"z": -185,
|
||||
"name": "Dark Oak Station"
|
||||
},
|
||||
{
|
||||
"x": -536,
|
||||
"z": -187,
|
||||
"name": "Cat Ave Station"
|
||||
},
|
||||
{
|
||||
"x": -220,
|
||||
"z": 1176,
|
||||
"name": "End of Line"
|
||||
},
|
||||
{
|
||||
"x": -220,
|
||||
"z": 6,
|
||||
"name": "Unknown Station"
|
||||
},
|
||||
{
|
||||
"x": -219,
|
||||
"z": -254,
|
||||
"name": "Spawn Glider Port Station"
|
||||
},
|
||||
{
|
||||
"x": -219,
|
||||
"z": -375,
|
||||
"name": "Bell Bridge / Changa Station"
|
||||
},
|
||||
{
|
||||
"x": -219,
|
||||
"z": -481,
|
||||
"name": "Eccentric Genius Station"
|
||||
},
|
||||
{
|
||||
"x": -219,
|
||||
"z": -552,
|
||||
"name": "Xiled Station"
|
||||
},
|
||||
{
|
||||
"x": -219,
|
||||
"z": -650,
|
||||
"name": "Nopantsistan Station"
|
||||
},
|
||||
{
|
||||
"x": -220,
|
||||
"z": -1797,
|
||||
"name": "[HLV] Highland Village Station"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -1254,
|
||||
"name": "[MSW] Mid-Swamp Station"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -782,
|
||||
"name": "[JOT] Jotaku Station"
|
||||
},
|
||||
{
|
||||
"x": -197,
|
||||
"z": -719,
|
||||
"name": "[NSX] Northside Transfer Station"
|
||||
},
|
||||
{
|
||||
"x": -217,
|
||||
"z": -275,
|
||||
"name": "Spawn Central Station"
|
||||
},
|
||||
{
|
||||
"x": -245,
|
||||
"z": -366,
|
||||
"name": "[NRV] North River Station"
|
||||
},
|
||||
{
|
||||
"x": -245,
|
||||
"z": -258,
|
||||
"name": "[CMK] Central Market Station"
|
||||
},
|
||||
{
|
||||
"x": -219,
|
||||
"z": -137,
|
||||
"name": "Monument Place Station"
|
||||
},
|
||||
{
|
||||
"x": -220,
|
||||
"z": -137,
|
||||
"name": "Monument Place Station"
|
||||
},
|
||||
{
|
||||
"x": -120,
|
||||
"z": -481,
|
||||
"name": "Survey Hall Station"
|
||||
},
|
||||
{
|
||||
"x": -143,
|
||||
"z": -304,
|
||||
"name": "Inventory Station"
|
||||
},
|
||||
{
|
||||
"x": -115,
|
||||
"z": -256,
|
||||
"name": "Spawn Square Station"
|
||||
},
|
||||
{
|
||||
"x": 63,
|
||||
"z": -215,
|
||||
"name": "Tek Square Station"
|
||||
},
|
||||
{
|
||||
"x": -36,
|
||||
"z": -225,
|
||||
"name": "Manor Ave Station"
|
||||
},
|
||||
{
|
||||
"x": -141,
|
||||
"z": -225,
|
||||
"name": "Spawn Square Station"
|
||||
},
|
||||
{
|
||||
"x": -221,
|
||||
"z": -226,
|
||||
"name": "DOJO St Station"
|
||||
},
|
||||
{
|
||||
"x": -389,
|
||||
"z": -222,
|
||||
"name": "Mob St Station"
|
||||
},
|
||||
{
|
||||
"x": -491,
|
||||
"z": -222,
|
||||
"name": "[CAT] Cat Ave Station"
|
||||
},
|
||||
{
|
||||
"x": -624,
|
||||
"z": 310,
|
||||
"name": "Garfield Station"
|
||||
},
|
||||
{
|
||||
"x": -616,
|
||||
"z": -222,
|
||||
"name": "Castle Square Station"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -373,
|
||||
"name": "[CHA] Changa Station"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -477,
|
||||
"name": "[ECG] Eccentric Genius"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -575,
|
||||
"name": "[XIL] Xiled Station"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -662,
|
||||
"name": "[NOP] Nopantsistan Station"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -720,
|
||||
"name": "[NSX] Northside Transfer"
|
||||
},
|
||||
{
|
||||
"x": -245,
|
||||
"z": -665,
|
||||
"name": "[NPN] Nopantsistan Station"
|
||||
},
|
||||
{
|
||||
"x": -245,
|
||||
"z": -543,
|
||||
"name": "[LAY] Laydros Station"
|
||||
},
|
||||
{
|
||||
"x": -900,
|
||||
"z": -1992,
|
||||
"name": "Red Station"
|
||||
},
|
||||
{
|
||||
"x": -72,
|
||||
"z": -1946,
|
||||
"name": "[NSC] North Shore City Terminal"
|
||||
},
|
||||
{
|
||||
"x": -183,
|
||||
"z": -1949,
|
||||
"name": "[NSJ] North Shore Junction"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -1736,
|
||||
"name": "[HLV] Highland Village Station"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -1519,
|
||||
"name": "[NDK] North Docks Station"
|
||||
},
|
||||
{
|
||||
"x": -187,
|
||||
"z": -839,
|
||||
"name": "[BOH] Boathouse Station"
|
||||
},
|
||||
{
|
||||
"x": -189,
|
||||
"z": -321,
|
||||
"name": "[RST] Riverside Station"
|
||||
},
|
||||
{
|
||||
"x": -213,
|
||||
"z": -258,
|
||||
"name": "Spawn Central Station"
|
||||
}
|
||||
]
|
||||
},
|
||||
"lines": {
|
||||
"subway_lines": [
|
||||
{
|
||||
"name": "Skytrain",
|
||||
"color": "red",
|
||||
"point_pairs": [
|
||||
{
|
||||
"from": {
|
||||
"x": 927,
|
||||
"z": 1223
|
||||
},
|
||||
"to": {
|
||||
"x": 927,
|
||||
"z": -186
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": 927,
|
||||
"z": -186
|
||||
},
|
||||
"to": {
|
||||
"x": -4395,
|
||||
"z": -186
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": -890,
|
||||
"z": -186
|
||||
},
|
||||
"to": {
|
||||
"x": -890,
|
||||
"z": -322
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": -890,
|
||||
"z": -322
|
||||
},
|
||||
"to": {
|
||||
"x": -899,
|
||||
"z": -322
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": -899,
|
||||
"z": -322
|
||||
},
|
||||
"to": {
|
||||
"x": -899,
|
||||
"z": -4187
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": -1048,
|
||||
"z": -186
|
||||
},
|
||||
"to": {
|
||||
"x": -1048,
|
||||
"z": -95
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": -1371,
|
||||
"z": -186
|
||||
},
|
||||
"to": {
|
||||
"x": -1371,
|
||||
"z": 1087
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": -1371,
|
||||
"z": 1087
|
||||
},
|
||||
"to": {
|
||||
"x": -1033,
|
||||
"z": 1087
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": -220,
|
||||
"z": -186
|
||||
},
|
||||
"to": {
|
||||
"x": -220,
|
||||
"z": 1175
|
||||
}
|
||||
},
|
||||
{
|
||||
"from": {
|
||||
"x": -220,
|
||||
"z": -186
|
||||
},
|
||||
"to": {
|
||||
"x": -220,
|
||||
"z": -1797
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
]
|
||||
},
|
||||
"areas": [
|
||||
{
|
||||
"name": "Spawn",
|
||||
"top_left": {
|
||||
"x": -147,
|
||||
"z": -266
|
||||
},
|
||||
"bottom_right": {
|
||||
"x": -126,
|
||||
"z": -245
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@ -1,128 +0,0 @@
|
||||
[
|
||||
{
|
||||
"x": -2560,
|
||||
"z": -3584,
|
||||
"chunk_x": 0,
|
||||
"chunk_z": 1,
|
||||
"image": "xaero_tile_-2560_-3584.png"
|
||||
},
|
||||
{
|
||||
"x": -2560,
|
||||
"z": -2560,
|
||||
"chunk_x": 0,
|
||||
"chunk_z": 2,
|
||||
"image": "xaero_tile_-2560_-2560.png"
|
||||
},
|
||||
{
|
||||
"x": -2560,
|
||||
"z": -1536,
|
||||
"chunk_x": 0,
|
||||
"chunk_z": 3,
|
||||
"image": "xaero_tile_-2560_-1536.png"
|
||||
},
|
||||
{
|
||||
"x": -2560,
|
||||
"z": -512,
|
||||
"chunk_x": 0,
|
||||
"chunk_z": 4,
|
||||
"image": "xaero_tile_-2560_-512.png"
|
||||
},
|
||||
{
|
||||
"x": -2560,
|
||||
"z": 512,
|
||||
"chunk_x": 0,
|
||||
"chunk_z": 5,
|
||||
"image": "xaero_tile_-2560_512.png"
|
||||
},
|
||||
{
|
||||
"x": -1536,
|
||||
"z": -4608,
|
||||
"chunk_x": 1,
|
||||
"chunk_z": 0,
|
||||
"image": "xaero_tile_-1536_-4608.png"
|
||||
},
|
||||
{
|
||||
"x": -1536,
|
||||
"z": -3584,
|
||||
"chunk_x": 1,
|
||||
"chunk_z": 1,
|
||||
"image": "xaero_tile_-1536_-3584.png"
|
||||
},
|
||||
{
|
||||
"x": -1536,
|
||||
"z": -2560,
|
||||
"chunk_x": 1,
|
||||
"chunk_z": 2,
|
||||
"image": "xaero_tile_-1536_-2560.png"
|
||||
},
|
||||
{
|
||||
"x": -1536,
|
||||
"z": -1536,
|
||||
"chunk_x": 1,
|
||||
"chunk_z": 3,
|
||||
"image": "xaero_tile_-1536_-1536.png"
|
||||
},
|
||||
{
|
||||
"x": -1536,
|
||||
"z": -512,
|
||||
"chunk_x": 1,
|
||||
"chunk_z": 4,
|
||||
"image": "xaero_tile_-1536_-512.png"
|
||||
},
|
||||
{
|
||||
"x": -1536,
|
||||
"z": 512,
|
||||
"chunk_x": 1,
|
||||
"chunk_z": 5,
|
||||
"image": "xaero_tile_-1536_512.png"
|
||||
},
|
||||
{
|
||||
"x": -512,
|
||||
"z": -3584,
|
||||
"chunk_x": 2,
|
||||
"chunk_z": 1,
|
||||
"image": "xaero_tile_-512_-3584.png"
|
||||
},
|
||||
{
|
||||
"x": -512,
|
||||
"z": -2560,
|
||||
"chunk_x": 2,
|
||||
"chunk_z": 2,
|
||||
"image": "xaero_tile_-512_-2560.png"
|
||||
},
|
||||
{
|
||||
"x": -512,
|
||||
"z": -1536,
|
||||
"chunk_x": 2,
|
||||
"chunk_z": 3,
|
||||
"image": "xaero_tile_-512_-1536.png"
|
||||
},
|
||||
{
|
||||
"x": -512,
|
||||
"z": -512,
|
||||
"chunk_x": 2,
|
||||
"chunk_z": 4,
|
||||
"image": "xaero_tile_-512_-512.png"
|
||||
},
|
||||
{
|
||||
"x": -512,
|
||||
"z": 512,
|
||||
"chunk_x": 2,
|
||||
"chunk_z": 5,
|
||||
"image": "xaero_tile_-512_512.png"
|
||||
},
|
||||
{
|
||||
"x": 512,
|
||||
"z": -512,
|
||||
"chunk_x": 3,
|
||||
"chunk_z": 4,
|
||||
"image": "xaero_tile_512_-512.png"
|
||||
},
|
||||
{
|
||||
"x": 512,
|
||||
"z": 512,
|
||||
"chunk_x": 3,
|
||||
"chunk_z": 5,
|
||||
"image": "xaero_tile_512_512.png"
|
||||
}
|
||||
]
|
Before Width: | Height: | Size: 421 KiB |
Before Width: | Height: | Size: 469 KiB |
Before Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 81 KiB |
Before Width: | Height: | Size: 828 KiB |
Before Width: | Height: | Size: 211 KiB |
Before Width: | Height: | Size: 302 KiB |
Before Width: | Height: | Size: 185 KiB |
Before Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 175 KiB |
Before Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 597 KiB |
Before Width: | Height: | Size: 426 KiB |
Before Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 970 KiB |
Before Width: | Height: | Size: 266 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 139 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 406 KiB |
Before Width: | Height: | Size: 878 KiB |
Before Width: | Height: | Size: 866 KiB |
Before Width: | Height: | Size: 714 KiB |
Before Width: | Height: | Size: 700 KiB |
Before Width: | Height: | Size: 761 KiB |
Before Width: | Height: | Size: 613 KiB |
Before Width: | Height: | Size: 691 KiB |
Before Width: | Height: | Size: 843 KiB |
Before Width: | Height: | Size: 832 KiB |
Before Width: | Height: | Size: 727 KiB |
Before Width: | Height: | Size: 381 KiB |
Before Width: | Height: | Size: 254 KiB |
Before Width: | Height: | Size: 707 KiB |
Before Width: | Height: | Size: 101 KiB |
Before Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 202 KiB |
Before Width: | Height: | Size: 892 KiB |
Before Width: | Height: | Size: 870 KiB |
Before Width: | Height: | Size: 781 KiB |
Before Width: | Height: | Size: 720 KiB |
Before Width: | Height: | Size: 741 KiB |
Before Width: | Height: | Size: 401 KiB |
Before Width: | Height: | Size: 288 KiB |
Before Width: | Height: | Size: 339 KiB |
Before Width: | Height: | Size: 355 KiB |
Before Width: | Height: | Size: 352 KiB |
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 792 KiB |
Before Width: | Height: | Size: 217 KiB |
Before Width: | Height: | Size: 225 KiB |
Before Width: | Height: | Size: 161 KiB |
Before Width: | Height: | Size: 643 KiB |
Before Width: | Height: | Size: 880 KiB |
Before Width: | Height: | Size: 450 KiB |
Before Width: | Height: | Size: 692 KiB |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 331 KiB |
Before Width: | Height: | Size: 594 KiB |
Before Width: | Height: | Size: 154 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 477 KiB |
Before Width: | Height: | Size: 296 KiB |
Before Width: | Height: | Size: 842 KiB |
Before Width: | Height: | Size: 718 KiB |
Before Width: | Height: | Size: 153 KiB |
Before Width: | Height: | Size: 311 KiB |
Before Width: | Height: | Size: 357 KiB |
Before Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 274 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 121 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 247 KiB |
Before Width: | Height: | Size: 123 KiB |
Before Width: | Height: | Size: 330 KiB |
Before Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 306 KiB |
Before Width: | Height: | Size: 423 KiB |
Before Width: | Height: | Size: 799 KiB |
Before Width: | Height: | Size: 826 KiB |
Before Width: | Height: | Size: 813 KiB |
Before Width: | Height: | Size: 776 KiB |
Before Width: | Height: | Size: 761 KiB |
Before Width: | Height: | Size: 733 KiB |
Before Width: | Height: | Size: 781 KiB |