From df502c5e5e1c31d13e6f9fe4a504c37f90f018a5 Mon Sep 17 00:00:00 2001 From: Relintai Date: Thu, 20 Jan 2022 18:57:23 +0100 Subject: [PATCH] Fix typo. --- game/addons/mesh_data_resource_editor/uv_editor/RectViewNode.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/addons/mesh_data_resource_editor/uv_editor/RectViewNode.gd b/game/addons/mesh_data_resource_editor/uv_editor/RectViewNode.gd index dde28387..48b032fc 100644 --- a/game/addons/mesh_data_resource_editor/uv_editor/RectViewNode.gd +++ b/game/addons/mesh_data_resource_editor/uv_editor/RectViewNode.gd @@ -123,7 +123,7 @@ func set_up_base_rect() -> void: func normalize_uvs() -> void: var xmm : float = _uv_max.x - _uv_min.x - var ymm : float = _uv_max.x - _uv_min.x + var ymm : float = _uv_max.y - _uv_min.y if xmm == 0: xmm = 0.0000001