formatting

This commit is contained in:
Jay Christy
2024-05-23 14:03:23 -04:00
parent 870cb57a99
commit 99a52dac1e

View File

@@ -14,13 +14,10 @@ impl Plugin for OxrActionAttachingPlugin {
fn attach_sets(session: Res<OxrSession>, mut events: EventReader<OxrAttachActionSet>) {
let sets = events.read().map(|v| &v.0).collect::<Vec<_>>();
if sets.is_empty() {
return;
}
if sets.is_empty() {return;}
info!("attaching {} sessions", sets.len());
match session.attach_action_sets(&sets) {
Ok(_) => {
info!("attached sessions!");
Ok(_) => {info!("attached sessions!");
}
Err(openxr::sys::Result::ERROR_ACTIONSETS_ALREADY_ATTACHED) => {
error!("Action Sets Already attached!");