diff --git a/Cargo.toml b/Cargo.toml index daf44d7..d59bbf3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bevy_ort" description = "bevy ort (onnxruntime) plugin" -version = "0.12.2" +version = "0.12.3" edition = "2021" authors = ["mosure "] license = "MIT" diff --git a/src/models/flame.rs b/src/models/flame.rs index 7511f98..e604746 100644 --- a/src/models/flame.rs +++ b/src/models/flame.rs @@ -28,10 +28,6 @@ pub struct FlamePlugin; impl Plugin for FlamePlugin { fn build(&self, app: &mut App) { app.init_resource::(); - - app.register_type::(); - app.register_type::(); - app.add_systems(PreUpdate, flame_inference_system); } }