Skip to content

Commit

Permalink
Fix resource failing
Browse files Browse the repository at this point in the history
  • Loading branch information
rewin123 committed May 21, 2024
1 parent 5f189db commit 2df89dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/editor_ui/src/meshless_visualizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ impl Plugin for MeshlessVisualizerPlugin {
.add_plugins(BillboardPlugin)
.add_systems(
Update,
(visualize_meshless, visualize_custom_meshless).in_set(EditorSet::Editor),
(visualize_meshless, visualize_custom_meshless).run_if(resource_exists::<EditorIconAssets>).in_set(EditorSet::Editor),
)
.editor_registry::<CustomMeshless>();
}
Expand Down

0 comments on commit 2df89dc

Please sign in to comment.