2 unstable releases

0.2.0 Feb 23, 2024
0.1.0 Nov 18, 2023

#1402 in Game dev

Download history 1/week @ 2023-12-19 3/week @ 2024-02-13 144/week @ 2024-02-20 29/week @ 2024-02-27 6/week @ 2024-03-05 10/week @ 2024-03-12 13/week @ 2024-03-19 13/week @ 2024-03-26 47/week @ 2024-04-02

83 downloads per month

MIT/Apache

33KB
172 lines

bevy_trauma_shake

crates.io MIT/Apache 2.0 crates.io docs.rs

Add camera shakes to your 2d Bevy game with three lines of code.

Goals

  • Zero configuration required
  • Sensible defaults
  • Batteries included (default noise)
  • Compatible with bevy_pancam

Usage

Add the plugin:

app.add_plugins(TraumaPlugin);

Simply add a component to your camera:

commands.spawn((Camera2dBundle::default(), Shake::default()));

Make it shake:

fn shake(mut shake: Query<&mut Shake>, keys: Res<Input<KeyCode>>) {
    if keys.just_pressed(KeyCode::Space) {
        shake.single_mut().add_trauma(0.2);
    }
}

There is also a convenience system param for applying trauma to all Shakes:

fn shake(mut shake: Shakes, keys: Res<Input<KeyCode>>) {
    if keys.just_pressed(KeyCode::Space) {
        shakes.add_trauma(0.2);
    }
}

And an event, if you prefer that:

fn shake(mut trauma: EventWriter<TraumaEvent>, keys: Res<Input<KeyCode>>) {
    if keys.just_pressed(KeyCode::Key1) {
        trauma.send(0.2.into());
    }
}

And even a command:

fn shake(mut commands: Commands, keys: Res<Input<KeyCode>>) {
    if keys.just_pressed(KeyCode::Key1) {
        info!("Adding small trauma");
        commands.add_trauma(0.2);
    }
}

Maybe I went a little overboard and I should remove one of those ways, in any case, they can be toggled through the features: system_param, events, commands.

Optional configuration

Optionally add ShakeSettings, if you're not happy with the defaults.

    commands.spawn((
        Name::new("Camera"),
        Camera2dBundle::default(),
        Shake::default(),
        ShakeSettings {
            amplitude: 200.,
            trauma_power: 3.,
            decay_per_second: 0.3,
            frequency: 4.,
            octaves: 2,
        },
        PanCam::default(),
    ));

Bevy Version Support

The main branch targets the latest bevy release.

bevy bevy_trauma_shake
0.13 0.2, main
0.12 0.1

License

bevy_trauma_shake is dual-licensed under either

at your option.

Thanks

Contributions

PRs welcome!

Dependencies

~39–79MB
~1M SLoC