Skip to content

Commit

Permalink
ran cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ChangeCaps committed Sep 30, 2021
1 parent 173fd51 commit 2c11ca0
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions examples/3d/3d_scene_pipelined.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
use bevy::{PipelinedDefaultPlugins, core::Time, diagnostic::{FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin}, ecs::prelude::*, hdr::BloomSettings, input::Input, math::{Quat, Vec3}, pbr2::{
use bevy::{
core::Time,
diagnostic::{FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin},
ecs::prelude::*,
hdr::BloomSettings,
input::Input,
math::{Quat, Vec3},
pbr2::{
AmbientLight, DirectionalLight, DirectionalLightBundle, PbrBundle, PointLight,
PointLightBundle, StandardMaterial,
}, prelude::{App, Assets, BuildChildren, KeyCode, Transform}, render2::{
},
prelude::{App, Assets, BuildChildren, KeyCode, Transform},
render2::{
camera::{OrthographicProjection, PerspectiveCameraBundle},
color::Color,
mesh::{shape, Mesh},
}};
},
PipelinedDefaultPlugins,
};

fn main() {
App::new()
Expand Down

0 comments on commit 2c11ca0

Please sign in to comment.