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 195d984 commit 6aff699Copy full SHA for 6aff699
examples/bench.rs
@@ -43,10 +43,6 @@ fn startup(mut commands: Commands, asset_server: Res<AssetServer>) {
43
});
44
}
45
46
-fn display_t_entities(query: Query<Entity, With<Transform>>) {
47
- dbg!(query.iter().count());
48
-}
49
-
50
fn main() {
51
App::new()
52
.add_plugins(
@@ -64,6 +60,6 @@ fn main() {
64
60
.add_plugins(FrameTimeDiagnosticsPlugin)
65
61
.add_plugins(TilemapPlugin)
66
62
.add_systems(Startup, startup)
67
- .add_systems(Update, (helpers::camera::movement, display_t_entities))
63
+ .add_systems(Update, helpers::camera::movement)
68
.run();
69
0 commit comments