bevy_ios_impact

Crates.iobevy_ios_impact
lib.rsbevy_ios_impact
version
sourcesrc
created_at2024-03-14 13:54:42.19213
updated_at2024-12-02 11:23:00.880382
descriptionallows using ios ImpactFeedback API to generate haptic device vibrations
homepagehttps://github.com/rustunit/bevy_ios_impact
repositoryhttps://github.com/rustunit/bevy_ios_impact
max_upload_size
id1173410
Cargo.toml error:TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include`
size0
(extrawurst)

documentation

https://docs.rs/bevy_ios_impact

README

bevy_ios_impact

crates.io docs.rs discord

Exposes UIImpactFeedbackGenerator API via Bevy Resource.

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

Currently build for bevy="0.14".

usage:

bevy_ios_impact = { version = "0.2" }

Example:

app.add_plugins(bevy_ios_impact::ImpactPlugin);

fn my_system(mut impacts: ResMut<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();

  // triggere the impact with different impact strengths (or 'style')
  impacts.impact(bevy_ios_impact::UIImpactFeedbackStyle::UIImpactFeedbackStyleHeavy);
}

Our Other Crates

Bevy version support

bevy crate
0.15 0.3,main
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.

Commit count: 38

cargo fmt