A Quadrilateral Cowboy clone intended to help me learn Game Dev

Made camera look at terminal screen, now need to work on physics picking and UI interaction

+3 -1
+3 -1
src/level.rs
··· 153 MeshMaterial3d(material_handle) 154 )); 155 }); 156 // light 157 commands.spawn(( 158 PointLight{ ··· 161 }, 162 Transform::from_xyz(4.0, 8.0, 4.0).looking_at(Vec3::ZERO, Vec3::Y) 163 )); 164 // camera 165 commands.spawn(( 166 Camera3d::default(), 167 - Transform::from_xyz(-2.5, 4.5, 9.0).looking_at(Vec3::ZERO, Vec3::Y) 168 )); 169 }
··· 153 MeshMaterial3d(material_handle) 154 )); 155 }); 156 + 157 // light 158 commands.spawn(( 159 PointLight{ ··· 162 }, 163 Transform::from_xyz(4.0, 8.0, 4.0).looking_at(Vec3::ZERO, Vec3::Y) 164 )); 165 + 166 // camera 167 commands.spawn(( 168 Camera3d::default(), 169 + Transform::from_xyz(0.5, -1.0, 3.5).looking_at(Vec3::new(0.0, -1.0, 0.0), Vec3::Y) 170 )); 171 }