Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rewin123 committed Nov 4, 2023
1 parent 16622bc commit ca7c0fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/optional/bevy_xpbd_plugin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ impl Plugin for BevyXpbdPlugin {

app.add_systems(
Update,
(collider::update_collider)
.in_set(PrefabSet::DetectPrefabChange),
(collider::update_collider).in_set(PrefabSet::DetectPrefabChange),
);

app.add_systems(
Expand All @@ -78,7 +77,6 @@ impl Plugin for BevyXpbdPlugin {
Update,
(sync_position_spawn).run_if(in_state(EditorState::Editor)),
);

}
}

Expand Down
5 changes: 3 additions & 2 deletions src/prefab/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ use bevy::{
use bevy_scene_hook::HookPlugin;

use crate::{
editor_registry::EditorRegistryExt, prelude::{EditorRegistryPlugin, OptionalPlugin}, EditorSet, EditorState,
PrefabMarker, PrefabSet,
editor_registry::EditorRegistryExt,
prelude::{EditorRegistryPlugin, OptionalPlugin},
EditorSet, EditorState, PrefabMarker, PrefabSet,
};

use component::*;
Expand Down

0 comments on commit ca7c0fb

Please sign in to comment.