formatting
This commit is contained in:
@@ -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!");
|
||||
|
||||
Reference in New Issue
Block a user