File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
crates/bevy_render/src/view/visibility Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 1
1
mod render_layers;
2
-
3
- use bevy_math:: Vec3A ;
4
- use crossbeam_channel:: unbounded;
5
-
6
2
pub use render_layers:: * ;
7
3
8
4
use bevy_app:: { CoreStage , Plugin } ;
9
5
use bevy_asset:: { Assets , Handle } ;
10
6
use bevy_ecs:: prelude:: * ;
7
+ use bevy_math:: Vec3A ;
11
8
use bevy_reflect:: Reflect ;
12
9
use bevy_transform:: components:: GlobalTransform ;
13
10
use bevy_transform:: TransformSystem ;
@@ -157,7 +154,7 @@ pub fn check_visibility(
157
154
visible_entities. entities . clear ( ) ;
158
155
let view_mask = maybe_view_mask. copied ( ) . unwrap_or_default ( ) ;
159
156
160
- let ( visible_entity_sender, visible_entity_receiver) = unbounded ( ) ;
157
+ let ( visible_entity_sender, visible_entity_receiver) = crossbeam_channel :: unbounded ( ) ;
161
158
162
159
visible_entity_query. par_for_each_mut (
163
160
& thread_pool,
You can’t perform that action at this time.
0 commit comments