|
|
|
@ -11,32 +11,22 @@ pub(crate) use bevy::{
|
|
|
|
tonemapping::{DebandDither, Tonemapping},
|
|
|
|
tonemapping::{DebandDither, Tonemapping},
|
|
|
|
Skybox,
|
|
|
|
Skybox,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
diagnostic::{
|
|
|
|
diagnostic::*,
|
|
|
|
DiagnosticsStore, EntityCountDiagnosticsPlugin, FrameTimeDiagnosticsPlugin,
|
|
|
|
|
|
|
|
SystemInformationDiagnosticsPlugin,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
gltf::Gltf,
|
|
|
|
gltf::Gltf,
|
|
|
|
input::{
|
|
|
|
input::{
|
|
|
|
keyboard::KeyboardInput,
|
|
|
|
keyboard::KeyboardInput,
|
|
|
|
mouse::{MouseButtonInput, MouseMotion, MouseScrollUnit, MouseWheel},
|
|
|
|
mouse::*,
|
|
|
|
ButtonState,
|
|
|
|
ButtonState,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
pbr::{
|
|
|
|
pbr::*,
|
|
|
|
ScreenSpaceAmbientOcclusionQualityLevel,
|
|
|
|
|
|
|
|
ExtendedMaterial, MaterialExtension, ScreenSpaceAmbientOcclusionBundle,
|
|
|
|
|
|
|
|
ScreenSpaceAmbientOcclusionSettings,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
prelude::*,
|
|
|
|
prelude::*,
|
|
|
|
reflect::TypePath,
|
|
|
|
reflect::TypePath,
|
|
|
|
render::{
|
|
|
|
render::{
|
|
|
|
mesh::{MeshVertexAttribute, VertexAttributeValues},
|
|
|
|
mesh::*,
|
|
|
|
render_resource::{
|
|
|
|
render_resource::*,
|
|
|
|
AsBindGroup, ShaderRef, TextureViewDescriptor, TextureViewDimension, VertexFormat,
|
|
|
|
view::*,
|
|
|
|
},
|
|
|
|
|
|
|
|
view::ColorGrading,
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
utils::BoxedFuture,
|
|
|
|
utils::{hashbrown::hash_map::Iter, HashMap, HashSet, BoxedFuture},
|
|
|
|
utils::{hashbrown::hash_map::Iter, HashMap, HashSet},
|
|
|
|
|
|
|
|
window::PrimaryWindow,
|
|
|
|
window::PrimaryWindow,
|
|
|
|
winit::WinitWindows,
|
|
|
|
winit::WinitWindows,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|