Open Indy2222 opened 1 year ago
Make it possible to take a screenshot from the game with a keyboard shortcut. Save the screenshot a game directory & log it.
Should be easy with use bevy::render::view::screenshot::ScreenshotManager (Bevy example screenshot.rs).
use bevy::render::view::screenshot::ScreenshotManager
Screenshot API was added to Bevy v0.11. Blocked by #622.
Make it possible to take a screenshot from the game with a keyboard shortcut. Save the screenshot a game directory & log it.
Should be easy with
use bevy::render::view::screenshot::ScreenshotManager
(Bevy example screenshot.rs).