Gaussian idle

This commit is contained in:
2026-03-22 11:29:50 +00:00
parent b2dc0cb864
commit 2f456f80b8
14 changed files with 354 additions and 106 deletions
+5 -1
View File
@@ -36,7 +36,11 @@ impl Plugin for WorldPlugin {
fn build(&self, app: &mut App) {
let drop_registry = crate::entities::item::drop_table::DropTableRegistry::load();
crate::entities::item::drop_table::DropTableRegistry::init_global(&drop_registry);
app.insert_resource(drop_registry)
app.insert_resource(drop_registry);
let behaviour_registry = crate::entities::behaviour::EntityBehaviourRegistry::load();
crate::entities::behaviour::EntityBehaviourRegistry::init_global(&behaviour_registry);
app.insert_resource(behaviour_registry)
.init_resource::<ChunkMap>()
.init_resource::<TerrainBlobStorage>()
.init_resource::<tiles::TilemapBenchmark>()