diff --git a/voxel_terrain.cpp b/voxel_terrain.cpp index dd68455..ffbf8e5 100644 --- a/voxel_terrain.cpp +++ b/voxel_terrain.cpp @@ -517,6 +517,11 @@ static inline bool is_mesh_empty(Ref mesh_ref) { void VoxelTerrain::_process() { + // TODO Should be able to run without library, tho! + if (_library.is_null()) { + return; + } + OS &os = *OS::get_singleton(); Engine &engine = *Engine::get_singleton();