Heron

License Crates.io Docs dependency status Bevy tracking Build Zenhub

An ergonomic physics API for 2d and 3d [bevy] games. (powered by [rapier])

How it looks like

```rust,no_run use bevy::prelude::; use heron::prelude::;

fn main() { App::build() .addplugins(DefaultPlugins) .addplugin(PhysicsPlugin::default()) // Add the plugin .insertresource(Gravity::from(Vec3::new(0.0, -9.81, 0.0))) // Optionally define gravity .addstartup_system(spawn.system()) .run(); }

fn spawn(mut commands: Commands) { commands

    // Spawn any bundle of your choice. Only make sure there is a `GlobalTransform`
    .spawn_bundle(SpriteBundle::default())

    // Make it a rigid body
    .insert(RigidBody::Dynamic)

    // Attach a collision shape
    .insert(CollisionShape::Sphere { radius: 10.0 })

    // Optionally add other useful components...
    .insert(Velocity::from_linear(Vec3::X * 2.0))
    .insert(Acceleration::from_linear(Vec3::X * 1.0))
    .insert(PhysicMaterial { friction: 1.0, density: 10.0, ..Default::default() })
    .insert(RotationConstraints::lock())
    .insert(CollisionLayers:none().with_group(Layer::Player).with_mask(Layer::World));

}

// Define your physics layers

[derive(PhysicsLayer)]

enum Layer { World, Player, Enemies, } ```

Installation

For a 3d game: toml bevy = "^0.5.0" heron = { version = "0.10.0", features = ["3d"] }

For a 2d game: toml bevy = "^0.5.0" heron = { version = "0.10.0", features = ["2d"] }

Bevy Version Supported

| bevy | heron | |------|------------| | 0.5 | >= 0.4 | | 0.4 | < 0.4 |

Design principles

Feature flags

One must choose to use either 2d or 3d (but not both). If none of theses two features is enabled, the PhysicsPlugin won't be available.

Contribute / Contact

You can open issues/discussions here or you can discuss with me (Jomag#2675) in the bevy discord

See how to contribute