An ergonomic physics API for 2d and 3d [bevy] games. (powered by [rapier])
```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 physics body, by attaching a collision shape
.insert(Body::Sphere { radius: 10.0 })
// Optionally define a type (if absent, the body will be *dynamic*)
.insert(BodyType::Kinematic)
// Optionally define the velocity (works only with dynamic and kinematic bodies)
.insert(Velocity::from(Vec2::X * 2.0));
} ```
For a 3d game:
toml
bevy = "^0.5.0"
heron = "0.4.0"
For a 2d game:
toml
bevy = "^0.5.0"
heron = { version = "0.4.0", default-features = false, features = ["2d"] }
| bevy | heron | |------|------------| | 0.5 | >= 0.4 | | 0.4 | < 0.4 |
Vec3
, Quat
, Transform
, Events
, etc.)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.
3d
Enable simulation on the 3 axes x
, y
, and z
. Incompatible with the feature 2d
.2d
Enable simulation only on the first 2 axes x
and y
. Incompatible with the feature 3d
, therefore require to disable the default features.debug
Render collision shapes. Works only in 2d, support for 3d will be added later.I think [rapier] is very powerful as a physics engine. But using it directly or via [bevy_rapier] in a [bevy] game is not ergonomic enough for my taste.
Ideally I would like to have the power of [rapier] accessible behind an API focused on [bevy] games.
You can open issues/discussions here or you can discuss with me (Jomag#2675
) in the bevy discord