We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 854934c commit f3974aaCopy full SHA for f3974aa
examples/diagnostics/log_diagnostics.rs
@@ -15,10 +15,15 @@ fn main() {
15
LogDiagnosticsPlugin::default(),
16
// Any plugin can register diagnostics. Uncomment this to add an entity count diagnostics:
17
// bevy::diagnostic::EntityCountDiagnosticsPlugin::default(),
18
+
19
// Uncomment this to add an asset count diagnostics:
20
// bevy::asset::diagnostic::AssetCountDiagnosticsPlugin::<Texture>::default(),
21
22
// Uncomment this to add system info diagnostics:
23
// bevy::diagnostic::SystemInformationDiagnosticsPlugin::default()
24
25
+ // Uncomment this to add rendering diagnostics:
26
+ // bevy::render::diagnostic::RenderDiagnosticsPlugin::default(),
27
))
28
.run();
29
}
0 commit comments