jakobhellermann / bevy-inspector-egui

Inspector plugin for the bevy game engine
Apache License 2.0
1.18k stars 173 forks source link

replace `std::time::Instant` with `bevy_utils::Instant` #187

Closed Toniman575 closed 7 months ago

Toniman575 commented 7 months ago

Building for WASM fails because std::time::Instant doesn't implement Reflect and TypePath. Replacing it with bevy_utils::Instant fixes this.

jakobhellermann commented 7 months ago

Thanks, missed that while refactoring

tad-lispy commented 7 months ago

Thanks to both of you for your work. Will there be a release with this change soon?