A Bevy plugin for exporting your app as an image sequence.
The plugin currently only works in 3D.
```rust use bevy::{prelude::*, winit::WinitSettings}; use bevyimageexport::{ImageExportCamera, ImageExportPlugin};
fn main() { let exportplugin = ImageExportPlugin::default(); let exportthreads = export_plugin.threads.clone();
App::new()
.insert_resource(WindowDescriptor {
width: 1024.,
height: 1024.,
..default()
})
.insert_resource(WinitSettings {
return_from_run: true,
..default()
})
.add_plugins(DefaultPlugins)
.add_plugin(export_plugin)
// ...
.run();
// This is optional but recommended.
// It blocks the main thread until all images have been exported.
export_threads.finish();
}
fn setup(
mut commands: Commands,
mut meshes: ResMut
// Add a child camera to your main camera and insert the ImageExportCamera component.
.with_children(|parent| {
parent
.spawn_bundle(Camera3dBundle::default())
.insert(ImageExportCamera {
// The rendered frames will be saved to "./out/[#####].png".
output_dir: "out",
extension: "png",
});
});
// ...
} ```