fix imports
This commit is contained in:
parent
ac201568f2
commit
c3855d30a3
@ -16,8 +16,12 @@ use bevy::{
|
||||
},
|
||||
prelude::*,
|
||||
render::{
|
||||
extract_component::ExtractComponentPlugin,
|
||||
mesh::{Indices, MeshVertexBufferLayoutRef, PrimitiveTopology, RenderMesh},
|
||||
batching::gpu_preprocessing::GpuPreprocessingSupport,
|
||||
extract_component::{ExtractComponent, ExtractComponentPlugin},
|
||||
mesh::{
|
||||
allocator::MeshAllocator, Indices, MeshVertexBufferLayoutRef, PrimitiveTopology,
|
||||
RenderMesh,
|
||||
},
|
||||
render_asset::{RenderAssetUsages, RenderAssets},
|
||||
render_phase::{
|
||||
AddRenderCommand, BinnedRenderPhaseType, DrawFunctions, SetItemPipeline,
|
||||
@ -30,13 +34,9 @@ use bevy::{
|
||||
SpecializedMeshPipelines, TextureFormat, VertexState,
|
||||
},
|
||||
view::{self, ExtractedView, RenderVisibleEntities, ViewTarget, VisibilityClass},
|
||||
Render, RenderApp, RenderSystems,
|
||||
Render, RenderApp, RenderStartup, RenderSystems,
|
||||
},
|
||||
};
|
||||
use bevy_render::{
|
||||
batching::gpu_preprocessing::GpuPreprocessingSupport, extract_component::ExtractComponent,
|
||||
mesh::allocator::MeshAllocator, RenderStartup,
|
||||
};
|
||||
|
||||
const SHADER_ASSET_PATH: &str = "shaders/specialized_mesh_pipeline.wgsl";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user