From 7206a23ebb3610443eac46a9c878b14bdd4dc58f Mon Sep 17 00:00:00 2001 From: bartjuhhh <bart.knuiman@wur.nl> Date: Mon, 20 Nov 2023 12:42:47 +0100 Subject: [PATCH] Tiny bugfix. --- Runtime/VectorTile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/VectorTile.cs b/Runtime/VectorTile.cs index 37c640b..d4805a4 100644 --- a/Runtime/VectorTile.cs +++ b/Runtime/VectorTile.cs @@ -581,7 +581,7 @@ namespace Wander } cachedPixel = pixel2; } - UnityEngine.Debug.Assert( remappedPixel < 15 ); + UnityEngine.Debug.Assert( remappedPixel <= 15 ); } else { -- GitLab