I have no idea what i'm doing
This commit is contained in:
13
src/app.rs
13
src/app.rs
@@ -83,13 +83,14 @@ fn setup(mut commands: Commands, mut images: ResMut<Assets<Image>>, window: Sing
|
||||
commands.spawn(Camera2d);
|
||||
|
||||
commands.spawn((
|
||||
// Camera3d::default(),
|
||||
Projection::Perspective(PerspectiveProjection {
|
||||
aspect_ratio: size.x as f32 / size.y as f32,
|
||||
..default()
|
||||
}),
|
||||
Camera3d::default(),
|
||||
Camera { order: -1, ..default() },
|
||||
// Projection::Perspective(PerspectiveProjection {
|
||||
// aspect_ratio: size.x as f32 / size.y as f32,
|
||||
// ..default()
|
||||
// }),
|
||||
RTCamera,
|
||||
Transform::from_xyz(0.0, 0.0, 5.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"),
|
||||
));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user