From 633deafbe0fa1a44632254c31e70d9b2187c90fd Mon Sep 17 00:00:00 2001 From: "s0wlz (Matthias Puchstein)" Date: Mon, 15 Dec 2025 23:27:37 +0100 Subject: [PATCH] removed legacy scripts --- export_heightmaps.py | 11 ----------- export_ortho_tiles.py | 11 ----------- 2 files changed, 22 deletions(-) delete mode 100644 export_heightmaps.py delete mode 100644 export_ortho_tiles.py diff --git a/export_heightmaps.py b/export_heightmaps.py deleted file mode 100644 index 8d74118..0000000 --- a/export_heightmaps.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env python3 -"""Compatibility wrapper: run heightmap export via geodata_to_unity.""" -from __future__ import annotations - -import sys - -from geodata_to_unity import main as geodata_main - - -if __name__ == "__main__": - sys.exit(geodata_main(["--export", "heightmap"])) diff --git a/export_ortho_tiles.py b/export_ortho_tiles.py deleted file mode 100644 index 0cd7996..0000000 --- a/export_ortho_tiles.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env python3 -"""Compatibility wrapper: run orthophoto export via geodata_to_unity.""" -from __future__ import annotations - -import sys - -from geodata_to_unity import main as geodata_main - - -if __name__ == "__main__": - sys.exit(geodata_main(["--export", "textures"]))