This commit is contained in:
2025-10-14 10:18:09 -04:00
parent fd6436a5c9
commit 8f4bd37e1e

View File

@@ -82,9 +82,10 @@ fn setup(mut commands: Commands, mut images: ResMut<Assets<Image>>, window: Sing
commands.spawn((Camera2d, RenderLayers::layer(0))); commands.spawn((Camera2d, RenderLayers::layer(0)));
commands.spawn(( commands
.spawn((
Camera3d::default(), Camera3d::default(),
Camera { order: -1, ..default() }, // Camera { order: -1, ..default() },
// Projection::Perspective(PerspectiveProjection { // Projection::Perspective(PerspectiveProjection {
// aspect_ratio: size.x as f32 / size.y as f32, // aspect_ratio: size.x as f32 / size.y as f32,
// ..default() // ..default()
@@ -93,7 +94,8 @@ fn setup(mut commands: Commands, mut images: ResMut<Assets<Image>>, window: Sing
RenderLayers::layer(1), RenderLayers::layer(1),
Transform::from_xyz(0.0, 5.0, 20.0).looking_at(Vec3::ZERO, Vec3::Y), Transform::from_xyz(0.0, 5.0, 20.0).looking_at(Vec3::ZERO, Vec3::Y),
Name::new("RT Camera"), Name::new("RT Camera"),
)); ))
.insert(Camera { order: -1, ..default() });
commands.insert_resource(TracerRenderTextures(img0, img1)); commands.insert_resource(TracerRenderTextures(img0, img1));
} }