 11b41206eb
			
		
	
	
		11b41206eb
		
	
	
	
	
		
			
			This updates the `pipelined-rendering` branch to use the latest `bevy_ecs` from `main`. This accomplishes a couple of goals: 1. prepares for upcoming `custom-shaders` branch changes, which were what drove many of the recent bevy_ecs changes on `main` 2. prepares for the soon-to-happen merge of `pipelined-rendering` into `main`. By including bevy_ecs changes now, we make that merge simpler / easier to review. I split this up into 3 commits: 1. **add upstream bevy_ecs**: please don't bother reviewing this content. it has already received thorough review on `main` and is a literal copy/paste of the relevant folders (the old folders were deleted so the directories are literally exactly the same as `main`). 2. **support manual buffer application in stages**: this is used to enable the Extract step. we've already reviewed this once on the `pipelined-rendering` branch, but its worth looking at one more time in the new context of (1). 3. **support manual archetype updates in QueryState**: same situation as (2).
		
			
				
	
	
		
			76 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			76 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use bevy::{
 | |
|     diagnostic::{FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin},
 | |
|     prelude::*,
 | |
| };
 | |
| use rand::{rngs::StdRng, Rng, SeedableRng};
 | |
| 
 | |
| /// This example spawns a large number of cubes, each with its own changing position and material
 | |
| /// This is intended to be a stress test of bevy's ability to render many objects with different
 | |
| /// properties For the best results, run it in release mode:
 | |
| /// ```bash
 | |
| /// cargo run --example spawner --release
 | |
| /// ```
 | |
| /// NOTE: Bevy still has a number of optimizations to do in this area. Expect the
 | |
| /// performance here to go way up in the future
 | |
| fn main() {
 | |
|     App::new()
 | |
|         .add_plugins(DefaultPlugins)
 | |
|         .add_plugin(FrameTimeDiagnosticsPlugin::default())
 | |
|         .add_plugin(LogDiagnosticsPlugin::default())
 | |
|         .add_startup_system(setup)
 | |
|         .add_system(move_cubes)
 | |
|         .run();
 | |
| }
 | |
| 
 | |
| fn move_cubes(
 | |
|     time: Res<Time>,
 | |
|     mut materials: ResMut<Assets<StandardMaterial>>,
 | |
|     mut query: Query<(&mut Transform, &Handle<StandardMaterial>)>,
 | |
| ) {
 | |
|     for (mut transform, material_handle) in query.iter_mut() {
 | |
|         let material = materials.get_mut(material_handle).unwrap();
 | |
|         transform.translation += Vec3::new(1.0, 0.0, 0.0) * time.delta_seconds();
 | |
|         material.base_color =
 | |
|             Color::BLUE * Vec3::splat((3.0 * time.seconds_since_startup() as f32).sin());
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn setup(
 | |
|     mut commands: Commands,
 | |
|     mut meshes: ResMut<Assets<Mesh>>,
 | |
|     mut materials: ResMut<Assets<StandardMaterial>>,
 | |
| ) {
 | |
|     // light
 | |
|     commands.spawn_bundle(PointLightBundle {
 | |
|         transform: Transform::from_xyz(4.0, -4.0, 5.0),
 | |
|         ..Default::default()
 | |
|     });
 | |
|     // camera
 | |
|     commands.spawn_bundle(PerspectiveCameraBundle {
 | |
|         transform: Transform::from_xyz(0.0, 15.0, 150.0).looking_at(Vec3::ZERO, Vec3::Y),
 | |
|         ..Default::default()
 | |
|     });
 | |
| 
 | |
|     let mut rng = StdRng::from_entropy();
 | |
|     let cube_handle = meshes.add(Mesh::from(shape::Cube { size: 1.0 }));
 | |
|     for _ in 0..10000 {
 | |
|         commands.spawn_bundle(PbrBundle {
 | |
|             mesh: cube_handle.clone(),
 | |
|             material: materials.add(StandardMaterial {
 | |
|                 base_color: Color::rgb(
 | |
|                     rng.gen_range(0.0..1.0),
 | |
|                     rng.gen_range(0.0..1.0),
 | |
|                     rng.gen_range(0.0..1.0),
 | |
|                 ),
 | |
|                 ..Default::default()
 | |
|             }),
 | |
|             transform: Transform::from_xyz(
 | |
|                 rng.gen_range(-50.0..50.0),
 | |
|                 rng.gen_range(-50.0..50.0),
 | |
|                 0.0,
 | |
|             ),
 | |
|             ..Default::default()
 | |
|         });
 | |
|     }
 | |
| }
 |