Bevy XPBD

MIT/Apache 2.0 2D crates.io 2D docs.rs 3D crates.io 3D docs.rs

Bevy XPBD is a 2D and 3D physics engine based on Extended Position Based Dynamics (XPBD) for the Bevy game engine.

Design

Below are some of the core design principles used in Bevy XPBD.

Features

Below are some of the current features of Bevy XPBD.

Documentation

Usage example

First, add bevy_xpbd_2d or bevy_xpbd_3d to your dependencies in Cargo.toml:

```toml

For 2D applications:

[dependencies] bevyxpbd2d = "0.2"

For 3D applications:

[dependencies] bevyxpbd3d = "0.2"

If you want to use the most up-to-date version, you can follow the main branch:

[dependencies] bevyxpbd3d = { git = "https://github.com/Jondolf/bevy_xpbd", branch = "main" } ```

Below is a very simple example where a box with initial angular velocity falls onto a plane. This is a modified version of Bevy's 3d_scene example.

```rs use bevy::prelude::; use bevy_xpbd_3d::prelude::;

fn main() { App::new() .addplugins((DefaultPlugins, PhysicsPlugins::default())) .addsystems(Startup, setup) .run(); }

fn setup( mut commands: Commands, mut meshes: ResMut>, mut materials: ResMut>, ) { // Plane commands.spawn(( PbrBundle { mesh: meshes.add(Mesh::from(shape::Plane::fromsize(8.0))), material: materials.add(Color::rgb(0.3, 0.5, 0.3).into()), ..default() }, RigidBody::Static, Collider::cuboid(8.0, 0.002, 8.0), )); // Cube commands.spawn(( PbrBundle { mesh: meshes.add(Mesh::from(shape::Cube { size: 1.0 })), material: materials.add(Color::rgb(0.8, 0.7, 0.6).into()), ..default() }, RigidBody::Dynamic, Position(Vec3::Y * 4.0), AngularVelocity(Vec3::new(2.5, 3.4, 1.6)), Collider::cuboid(1.0, 1.0, 1.0), )); // Light commands.spawn(PointLightBundle { pointlight: PointLight { intensity: 1500.0, shadowsenabled: true, ..default() }, transform: Transform::fromxyz(4.0, 8.0, 4.0), ..default() }); // Camera commands.spawn(Camera3dBundle { transform: Transform::fromxyz(-4.0, 6.5, 8.0).lookingat(Vec3::ZERO, Vec3::Y), ..default() }); } ```

https://user-images.githubusercontent.com/57632562/230185604-b40441a2-48d8-4566-9b9e-be4825f4877e.mp4

More examples

You can find lots of 2D and 3D examples in /crates/bevyxpbd2d/examples and /crates/bevyxpbd3d/examples respectively.

The examples support both f32 and f64 precisions, so the code contains some feature-dependent types like Scalar and Vector. In actual usage these are not needed, so you can just use f32 or f64 types depending on the features you have chosen.

By default the examples use f32. To run the f64 versions, you need to disable default features and manually choose the dimension and precision:

cargo run --example cubes --no-default-features --features "3d f64"

Supported Bevy versions

| Bevy | Bevy XPBD | | ---- | --------- | | 0.11 | 0.2 | | 0.10 | 0.1 |

Future features

Contributing

If you encounter any problems, feel free to open issues. Creating pull requests is encouraged as well, but especially for larger changes and additions it's better to open an issue first.

You can also ask for help or ask questions on the Bevy Discord server where you can find me as Jondolf.

License

Bevy XPBD is free and open source. All code in this repository is dual-licensed under either:

at your option.