Skip to content

Commit e48d73f

Browse files
committed
rustfmt
1 parent 6e5be4b commit e48d73f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

examples/bevy_egui.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ fn voxel_plot_setup(
163163
target: RenderTarget::Image(image_handle.clone()),
164164
..default()
165165
},
166-
Transform::from_translation(Vec3::new(-50.0, 0.0, 15.0)).looking_at(Vec3::ZERO, Vec3::Y),
166+
Transform::from_translation(Vec3::new(-50.0, 0.0, 15.0))
167+
.looking_at(Vec3::ZERO, Vec3::Y),
167168
PanOrbitCamera::default(),
168169
first_pass_layer,
169170
))
@@ -199,7 +200,6 @@ fn set_enable_camera_controls_system(
199200
}
200201
}
201202

202-
203203
pub fn update_gui(
204204
mut meshes: ResMut<Assets<Mesh>>,
205205
mut query: Query<(&mut InstanceMaterialData, &mut Mesh3d)>,
@@ -227,7 +227,6 @@ pub fn update_gui(
227227
&mut cam_input,
228228
)
229229
});
230-
231230
}
232231
fn show_plot(
233232
meshes: &mut ResMut<Assets<Mesh>>,

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
mod bevy_voxel_plot;
22

3-
pub use bevy_voxel_plot::*;
3+
pub use bevy_voxel_plot::*;

0 commit comments

Comments
 (0)