From df960a8ce5a6399ad1179e9732fe4a18f5599c61 Mon Sep 17 00:00:00 2001 From: Relintai Date: Mon, 30 Mar 2020 23:33:15 +0200 Subject: [PATCH] Make chunk lod selection linear. --- game/voxelman/world/TVVoxelWorld.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/voxelman/world/TVVoxelWorld.gd b/game/voxelman/world/TVVoxelWorld.gd index 147ab741..adaaa068 100644 --- a/game/voxelman/world/TVVoxelWorld.gd +++ b/game/voxelman/world/TVVoxelWorld.gd @@ -110,7 +110,7 @@ func _process(delta): c.current_lod_level = 0 elif mr == 2: c.current_lod_level = 1 - elif mr == 3 or mr == 4: + elif mr == 3:# or mr == 4: c.current_lod_level = 2 else: c.current_lod_level = 3