We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccda694 commit d07ee96Copy full SHA for d07ee96
crates/bevy_gizmos_render/src/lib.rs
@@ -86,9 +86,10 @@ impl Plugin for GizmoRenderPlugin {
86
.add_systems(
87
PostUpdate,
88
(
89
- calculate_bounds.in_set(VisibilitySystems::CalculateBounds),
90
mark_gizmos_as_changed_if_their_assets_changed.after(AssetEventSystems),
91
- ),
+ calculate_bounds.in_set(VisibilitySystems::CalculateBounds),
+ )
92
+ .chain(),
93
);
94
95
app.world_mut()
examples/gizmos/3d_gizmos.rs
@@ -22,7 +22,6 @@ struct MyRoundGizmos;
22
23
fn setup(
24
mut commands: Commands,
25
- mut gizmo_assets: ResMut<Assets<GizmoAsset>>,
26
mut meshes: ResMut<Assets<Mesh>>,
27
mut materials: ResMut<Assets<StandardMaterial>>,
28
) {
0 commit comments