Skip to content

Commit 6aff699

Browse files
committed
Removed debug code..
1 parent 195d984 commit 6aff699

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

examples/bench.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ fn startup(mut commands: Commands, asset_server: Res<AssetServer>) {
4343
});
4444
}
4545

46-
fn display_t_entities(query: Query<Entity, With<Transform>>) {
47-
dbg!(query.iter().count());
48-
}
49-
5046
fn main() {
5147
App::new()
5248
.add_plugins(
@@ -64,6 +60,6 @@ fn main() {
6460
.add_plugins(FrameTimeDiagnosticsPlugin)
6561
.add_plugins(TilemapPlugin)
6662
.add_systems(Startup, startup)
67-
.add_systems(Update, (helpers::camera::movement, display_t_entities))
63+
.add_systems(Update, helpers::camera::movement)
6864
.run();
6965
}

0 commit comments

Comments
 (0)