From 8b0bee1f048a0548b6b5c0cf89de7745f310e9b0 Mon Sep 17 00:00:00 2001 From: Sara Date: Wed, 7 Jan 2026 17:31:52 +0100 Subject: [PATCH] fix: first chunk build called deferred --- modules/terrain_editor/terrain_mesh_generator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/terrain_editor/terrain_mesh_generator.cpp b/modules/terrain_editor/terrain_mesh_generator.cpp index d1a9ad54..9053e0a5 100644 --- a/modules/terrain_editor/terrain_mesh_generator.cpp +++ b/modules/terrain_editor/terrain_mesh_generator.cpp @@ -83,7 +83,7 @@ void TerrainMeshGenerator::_notification(int what) { enter_tree(); return; case NOTIFICATION_READY: - rebuild_chunks(); + callable_mp(this, &self_type::rebuild_chunks).call_deferred(); break; case NOTIFICATION_PROCESS: process();