Skip to content

Commit d07ee96

Browse files
fixing CI errors
1 parent ccda694 commit d07ee96

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

crates/bevy_gizmos_render/src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,10 @@ impl Plugin for GizmoRenderPlugin {
8686
.add_systems(
8787
PostUpdate,
8888
(
89-
calculate_bounds.in_set(VisibilitySystems::CalculateBounds),
9089
mark_gizmos_as_changed_if_their_assets_changed.after(AssetEventSystems),
91-
),
90+
calculate_bounds.in_set(VisibilitySystems::CalculateBounds),
91+
)
92+
.chain(),
9293
);
9394

9495
app.world_mut()

examples/gizmos/3d_gizmos.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ struct MyRoundGizmos;
2222

2323
fn setup(
2424
mut commands: Commands,
25-
mut gizmo_assets: ResMut<Assets<GizmoAsset>>,
2625
mut meshes: ResMut<Assets<Mesh>>,
2726
mut materials: ResMut<Assets<StandardMaterial>>,
2827
) {

0 commit comments

Comments
 (0)