yeet log
This commit is contained in:
parent
c43e082117
commit
ac201568f2
@ -44,10 +44,15 @@ fn main() {
|
|||||||
App::new()
|
App::new()
|
||||||
.add_plugins(DefaultPlugins)
|
.add_plugins(DefaultPlugins)
|
||||||
.add_plugins(CustomRenderedMeshPipelinePlugin)
|
.add_plugins(CustomRenderedMeshPipelinePlugin)
|
||||||
.add_systems(Startup, setup)
|
.add_systems(
|
||||||
|
Startup,
|
||||||
|
(setup, setup2).run_if(resource_exists::<AssetServer>),
|
||||||
|
)
|
||||||
.run();
|
.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn setup2() {}
|
||||||
|
|
||||||
/// Spawns the objects in the scene.
|
/// Spawns the objects in the scene.
|
||||||
fn setup(mut commands: Commands, mut meshes: ResMut<Assets<Mesh>>) {
|
fn setup(mut commands: Commands, mut meshes: ResMut<Assets<Mesh>>) {
|
||||||
// Build a custom triangle mesh with colors
|
// Build a custom triangle mesh with colors
|
||||||
@ -291,7 +296,6 @@ fn queue_custom_mesh_pipeline(
|
|||||||
let Some(opaque_phase) = opaque_render_phases.get_mut(&view.retained_view_entity) else {
|
let Some(opaque_phase) = opaque_render_phases.get_mut(&view.retained_view_entity) else {
|
||||||
continue;
|
continue;
|
||||||
};
|
};
|
||||||
info!("queue view {:?}", view.retained_view_entity.main_entity);
|
|
||||||
|
|
||||||
// Create the key based on the view. In this case we only care about MSAA and HDR
|
// Create the key based on the view. In this case we only care about MSAA and HDR
|
||||||
let view_key = MeshPipelineKey::from_msaa_samples(msaa.samples())
|
let view_key = MeshPipelineKey::from_msaa_samples(msaa.samples())
|
||||||
|
Loading…
Reference in New Issue
Block a user