Event based image & video capture for Bevy
Duration
)wasm
support```rust use std::time::Duration; use bevy::prelude::*; use bevycapturemedia::{MediaCapture, BevyCapturePlugin};
pub fn spawncameras( mut commands: Commands, mut capture: MediaCapture, ) { let cameraentity = commands .spawn_bundle(Camera2dBundle::default()) .id();
// The tracking ID (1357) is arbitrary, but uniquely identifies this tracker
capture.start_tracking_camera(1357, camera_entity, Duration::from_secs(5));
}
pub fn takescreenshot( input: Res>, mut capture: MediaCapture, ) { if input.justreleased(KeyCode::RShift) { // If you have many cameras, consider storing their IDs // in a resource capture.capture_png(1357); } }
fn main() { app::new() .addplugin(DefaultPlugins) .addplugins(bevycapturemedia::BevyCapturePlugin) .addstartupsystem(spawncameras) .addsystem(take_screenshot); } ```
https://user-images.githubusercontent.com/2522620/184448446-8cd5214b-81fa-41a3-bdbe-156412cc99cc.mp4
All suggestions, issues, and pull requests are welcome. Any contributions must be licensed compatibly with this repository.
Yes! This is great! There is a small checklist that any new format will need to meet to be included: