From ab72c6fb1203dfe5e34d7bae06a3a73de51b63c4 Mon Sep 17 00:00:00 2001 From: Marc Gilleron Date: Tue, 3 Oct 2023 20:02:39 +0100 Subject: [PATCH] Remove unexpected tab. How did it slip in? It came from e081c28a9b3b0952f9e7f7f36b008c514424089f, but I can only see the extra tab in Git blame... It is not visible from here: https://github.com/Zylann/godot_heightmap_plugin/commit/e081c28a9b3b0952f9e7f7f36b008c514424089f --- addons/zylann.hterrain/tools/exporter/export_image_dialog.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/zylann.hterrain/tools/exporter/export_image_dialog.gd b/addons/zylann.hterrain/tools/exporter/export_image_dialog.gd index 5690eb1..3c08dbf 100644 --- a/addons/zylann.hterrain/tools/exporter/export_image_dialog.gd +++ b/addons/zylann.hterrain/tools/exporter/export_image_dialog.gd @@ -158,7 +158,7 @@ func _export() -> bool: for y in float_heightmap.get_height(): for x in float_heightmap.get_width(): var h := int((float_heightmap.get_pixel(x, y).r - height_min) * hscale) - f.store_16(clampi(h, 0, 65535)) + f.store_16(clampi(h, 0, 65535)) elif format == FORMAT_R32: var hscale := 4294967295.0 / (height_max - height_min)