diff options
author | Hop311 <Hop3114@gmail.com> | 2024-07-28 00:25:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-28 00:25:05 +0200 |
commit | bf4d061b06374cd696f1f1644548f4d7af86f5ec (patch) | |
tree | 9ab24e79d47c2c56dfd68ebf89e419d30324c92c /extension/src/openvic-extension/classes/MapMesh.cpp | |
parent | 0300a10ed7839710750b3937307c1f6c11c7bd75 (diff) | |
parent | 164db4eb8f24e87755e02bae0e539f4f266e15b9 (diff) |
Merge pull request #245 from OpenVicProject/free-on-remove
Free removed child nodes
Diffstat (limited to 'extension/src/openvic-extension/classes/MapMesh.cpp')
-rw-r--r-- | extension/src/openvic-extension/classes/MapMesh.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/openvic-extension/classes/MapMesh.cpp b/extension/src/openvic-extension/classes/MapMesh.cpp index ba1b19f..d968f34 100644 --- a/extension/src/openvic-extension/classes/MapMesh.cpp +++ b/extension/src/openvic-extension/classes/MapMesh.cpp @@ -86,7 +86,7 @@ AABB MapMesh::get_core_aabb() const { return AABB { size * -0.5f, size }; } -bool MapMesh::is_valid_uv_coord(godot::Vector2 const& uv) const { +bool MapMesh::is_valid_uv_coord(Vector2 const& uv) const { return 0.0f <= uv.y && uv.y <= 1.0f; } |