We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f4bf47 commit 33986c0Copy full SHA for 33986c0
Cargo.toml
@@ -1,7 +1,7 @@
1
[package]
2
name = "lifecycler"
3
description = "Bevy Game Jam #5 submission. Terminal aquarium."
4
-version = "0.2.3"
+version = "0.2.4"
5
edition = "2021"
6
license = "MIT OR Apache-2.0 OR CC0-1.0"
7
authors = ["cxreiff <[email protected]>"]
src/lib.rs
@@ -31,10 +31,7 @@ impl Plugin for AppPlugin {
31
exit_condition: ExitCondition::DontExit,
32
close_when_requested: false,
33
})
34
- .set(LogPlugin {
35
- level: bevy::log::Level::ERROR,
36
- ..default()
37
- }),
+ .disable::<LogPlugin>(),
38
ScheduleRunnerPlugin::run_loop(Duration::from_secs_f64(1. / 90.)),
39
FrameTimeDiagnosticsPlugin,
40
RatatuiPlugins {
0 commit comments