Changed rendering of tiles to always show them, changed camera range

This commit is contained in:
TAASONI3
2023-11-25 21:47:29 +01:00
parent 005c4e7e66
commit b9aa033c13
6 changed files with 34 additions and 39 deletions

View File

@@ -123,7 +123,6 @@ public class Tile : MonoBehaviour
bool result = false;
if (playerX >= borderEast + 10 || playerX <= borderWest - 10 || playerZ >= borderNorth + 10 || playerZ <= borderSouth - 10)
{
changeRenderer();
result = true;
}
return result;