1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
use bevy::{ecs::schedule::StateData, prelude::*};
use bevy_rapier3d::prelude::*;

pub mod components;
pub use components::*;

pub mod systems;
pub use systems::*;

pub struct YureiPluginWithState<T>(pub T);

impl<T> Plugin for YureiPluginWithState<T>
where
    T: StateData,
{
    fn build(&self, app: &mut App) {
        app.add_plugin(RapierPhysicsPlugin::<NoUserData>::default())
            .insert_resource(RapierConfiguration {
                gravity: Vec3::Y * -30.0,
                ..default()
            })
            .register_type::<Hover>()
            .register_type::<Movement>()
            .add_system_set(
                SystemSet::on_update(self.0.clone())
                    .with_system(handle_hover)
                    .with_system(handle_rotation)
                    .with_system(handle_moving_platforms)
                    .with_system(handle_movement)
                    .with_system(handle_damping.after(handle_movement)),
            )
            .add_system(handle_hover)
            .add_system(handle_rotation)
            .add_system(handle_moving_platforms)
            .add_system(handle_movement)
            .add_system(handle_damping.after(handle_movement));
    }
}

pub struct YureiPlugin;

impl Plugin for YureiPlugin {
    fn build(&self, app: &mut App) {
        app.add_plugin(RapierPhysicsPlugin::<NoUserData>::default())
            .insert_resource(RapierConfiguration {
                gravity: Vec3::Y * -30.0,
                ..default()
            })
            .register_type::<Hover>()
            .register_type::<Movement>()
            .add_system(handle_hover)
            .add_system(handle_rotation)
            .add_system(handle_moving_platforms)
            .add_system(handle_movement)
            .add_system(handle_damping.after(handle_movement));
    }
}
pub mod prelude {
    pub use crate::Grounded;
    pub use crate::Hover;
    pub use crate::Movement;
    pub use crate::RotationDriver;
    pub use crate::YureiBundle;
    pub use crate::YureiPlugin;
    pub use crate::YureiPluginWithState;
}