Skip to content

Commit d9a5afe

Browse files
committed
Reorder imports on bevy_render_2d
1 parent 437e48c commit d9a5afe

File tree

1 file changed

+7
-6
lines changed
  • crates/bevy_render_2d/src/material

1 file changed

+7
-6
lines changed

crates/bevy_render_2d/src/material/mod.rs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,13 @@ use bevy_render::{
3333
view::{ExtractedView, RenderVisibleEntities, ViewVisibility},
3434
Extract, ExtractSchedule, Render, RenderApp, RenderSet,
3535
};
36+
37+
use crate::mesh_pipeline::{
38+
instancing::RenderMesh2dInstances,
39+
pipeline::Mesh2dPipelineKey,
40+
view::{ViewKeyCache, ViewSpecializationTicks},
41+
};
42+
3643
use pipeline::{
3744
instances::RenderMaterial2dInstances,
3845
prepared_asset::PreparedMaterial2d,
@@ -43,12 +50,6 @@ use pipeline::{
4350
DrawMaterial2d, Material2dPipeline,
4451
};
4552

46-
use crate::mesh_pipeline::{
47-
instancing::RenderMesh2dInstances,
48-
pipeline::Mesh2dPipelineKey,
49-
view::{ViewKeyCache, ViewSpecializationTicks},
50-
};
51-
5253
pub use {
5354
alpha_mode::AlphaMode2d, components::MeshMaterial2d, key::Material2dKey, traits::Material2d,
5455
};

0 commit comments

Comments
 (0)