mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 22:50:19 +00:00
Add missing use statement
This commit is contained in:
parent
0b51e120d9
commit
f2b34dc741
1 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,10 @@
|
||||||
use std::f32::consts::PI;
|
use std::f32::consts::PI;
|
||||||
|
|
||||||
use bevy::{
|
use bevy::{
|
||||||
core_pipeline::{bloom::BloomSettings, prepass::DepthPrepass, tonemapping::Tonemapping},
|
core_pipeline::{
|
||||||
|
bloom::BloomSettings, core_3d::TransmissiveQuality, prepass::DepthPrepass,
|
||||||
|
tonemapping::Tonemapping,
|
||||||
|
},
|
||||||
pbr::{NotShadowCaster, NotTransmittedShadowReceiver, PointLightShadowMap},
|
pbr::{NotShadowCaster, NotTransmittedShadowReceiver, PointLightShadowMap},
|
||||||
prelude::*,
|
prelude::*,
|
||||||
render::camera::TemporalJitter,
|
render::camera::TemporalJitter,
|
||||||
|
|
Loading…
Reference in a new issue