diff --git a/Cargo.lock b/Cargo.lock index fa20543..dabd80e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -608,7 +608,7 @@ dependencies = [ [[package]] name = "bevy_icon_creator" -version = "0.1.5" +version = "0.1.6" dependencies = [ "bevy", ] diff --git a/Cargo.toml b/Cargo.toml index d499a9a..aefb026 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_icon_creator" -version = "0.1.5" +version = "0.1.6" edition = "2021" authors = ["Franklin E. Blanco"] description = "A plugin to automatically create Icons from entities/models in bevy" diff --git a/src/update.rs b/src/update.rs index 2e2fbc1..500b596 100644 --- a/src/update.rs +++ b/src/update.rs @@ -42,6 +42,7 @@ pub fn update_icon_creator_scenes( scene_camera.is_active = false; *scene_root_visibility = Visibility::Hidden; scene_camera.target = RenderTarget::default(); + entity_commands.despawn_descendants(); } } }