Skip to content

Latest commit

 

History

51 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bevy_ios_impact

crates.io docs.rs discord

Exposes UIImpactFeedbackGenerator API via a Bevy non-send resource.

On non-ios platforms this has no effect and will compile.

usage:

bevy_ios_impact = { version = "0.8" }

Example:

app.add_plugins(bevy_ios_impact::ImpactPlugin);

// UIKit's feedback generators are main-thread-only, so this is a `NonSendMut`,
// not a `ResMut` - that is what pins the system to the main thread.
fn my_system(mut impacts: NonSendMut<bevy_ios_impact::ImpactResource>) {
  // optional: haptic engine might be asleep if not prepared.
  // in practice i never felt a delay, but see apple docs on this:
  // https://developer.apple.com/documentation/uikit/uifeedbackgenerator?language=objc
  impacts.prepare();

  // trigger the impact with different impact strengths (or 'style')
  impacts.impact(bevy_ios_impact::FeedbackStyle::Heavy);
}

Our Other Crates

Bevy version support

bevy crate
0.19 0.8,0.7,main
0.18 0.6
0.17 0.5
0.16 0.4
0.15 0.3
0.14 0.2
0.13 0.1

License

All code in this repository is dual-licensed under either:

at your option. This means you can select the license you prefer.

Your contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Allows using UI ImpactFeedback Generator API in Bevy Applications

Topics

Resources

Stars

9 stars

Watchers

1 watching

Forks

Releases

Sponsor this project

Used by

Contributors

Languages