From 2792a1681af666917b25a0cca624dd1b6f4219d7 Mon Sep 17 00:00:00 2001 From: Rob Kelly Date: Tue, 30 Sep 2025 11:22:59 -0600 Subject: [PATCH] Removed debug text --- src/world/generation/chunk/chunk.gd | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/world/generation/chunk/chunk.gd b/src/world/generation/chunk/chunk.gd index c1ab7b4..bee6881 100644 --- a/src/world/generation/chunk/chunk.gd +++ b/src/world/generation/chunk/chunk.gd @@ -15,13 +15,11 @@ func chunk_position() -> Vector2: func generate() -> void: # TODO: this - print_debug("Generating chunk at ", chunk_position()) # Let's generate a building... var construct_noise := WorldGenManager.noise.get_noise_2dv(chunk_position() + construct_offset) var construct_height := construct_noise * construct_height_factor if construct_height > construct_height_threshold: - print_debug("GENERATING CONSTRUCT") var construct := CSGBox3D.new() add_child(construct) construct.size = Vector3(60, construct_height, 60)