diff --git a/src/bin/collect.rs b/src/bin/collect.rs index dc5f8676..c3e4a5d8 100644 --- a/src/bin/collect.rs +++ b/src/bin/collect.rs @@ -273,9 +273,17 @@ impl Commands { } => { if scene.is_empty() { vec![ + Box::new( + large_scenes::LargeScene::on( + "bistro".to_string(), + vec![("compress".to_string(), None)], + 25000, + ) + .with_features(vec!["mipmap_generator/compress"]), + ), Box::new(large_scenes::LargeScene::on( "bistro".to_string(), - vec![], + vec![("no-mip-generation".to_string(), None)], 25000, )), Box::new(large_scenes::LargeScene::on( @@ -283,6 +291,11 @@ impl Commands { vec![], 25000, )), + Box::new(large_scenes::LargeScene::on( + "bevy_city".to_string(), + vec![], + 25000, + )), ] } else { let parameters: Vec = @@ -302,9 +315,10 @@ impl Commands { }) .collect(); - vec![Box::new(large_scenes::LargeScene::on( - scene, parameters, nb_frames, - ))] + vec![Box::new( + large_scenes::LargeScene::on(scene, parameters, nb_frames) + .with_features(vec!["mipmap_generator/compress"]), + )] } } Commands::Benchmarks => {