Crates.io | bevy_ios_impact |
lib.rs | bevy_ios_impact |
version | |
source | src |
created_at | 2024-03-14 13:54:42.19213 |
updated_at | 2024-12-02 11:23:00.880382 |
description | allows using ios ImpactFeedback API to generate haptic device vibrations |
homepage | https://github.com/rustunit/bevy_ios_impact |
repository | https://github.com/rustunit/bevy_ios_impact |
max_upload_size | |
id | 1173410 |
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` |
size | 0 |
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);
}
bevy | crate |
---|---|
0.15 | 0.3,main |
0.14 | 0.2 |
0.13 | 0.1 |
All code in this repository is dual-licensed under either:
at your option. This means you can select the license you prefer.
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.