diff --git a/examples/diagnostics/log_diagnostics.rs b/examples/diagnostics/log_diagnostics.rs index e312ad671d12e..d0934c5e3968b 100644 --- a/examples/diagnostics/log_diagnostics.rs +++ b/examples/diagnostics/log_diagnostics.rs @@ -15,10 +15,15 @@ fn main() { LogDiagnosticsPlugin::default(), // Any plugin can register diagnostics. Uncomment this to add an entity count diagnostics: // bevy::diagnostic::EntityCountDiagnosticsPlugin::default(), + // Uncomment this to add an asset count diagnostics: // bevy::asset::diagnostic::AssetCountDiagnosticsPlugin::::default(), + // Uncomment this to add system info diagnostics: // bevy::diagnostic::SystemInformationDiagnosticsPlugin::default() + + // Uncomment this to add rendering diagnostics: + // bevy::render::diagnostic::RenderDiagnosticsPlugin::default(), )) .run(); }