Git Product home page Git Product logo

avian's Introduction

Avian Physics

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

Avian is an ECS-driven 2D and 3D physics engine for the Bevy game engine.


Design

Below are some of the core design principles used in Avian.

  • Made with Bevy, for Bevy. No wrappers around existing engines.
  • Provide an ergonomic and familiar API. Ergonomics is key for a good experience.
  • Utilize the ECS as much as possible. The engine should feel like a part of Bevy, and it shouldn't need to maintain a separate physics world.
  • Use a highly modular plugin architecture. Users should be able to replace parts of the engine with their own implementations.
  • Have good documentation. A physics engine is pointless if you don't know how to use it.

Features

Below are some of the current features of Avian.

  • Dynamic, kinematic and static rigid bodies
    • Linear and angular velocity
    • External forces, torque and impulses
    • Gravity and gravity scale
    • Linear and angular damping
    • Locking translational and rotational axes
    • Rigid body dominance
    • Continuous Collision Detection (CCD)
    • Automatic deactivation with sleeping
  • Collision detection powered by Parry
    • Colliders with configurable collision layers, density, material properties and more
    • Collider generation for meshes and entire scenes
    • Collision events
    • Access to colliding entities
    • Filtering and modifying collisions with custom systems
    • Manual contact queries and intersection tests
  • Constraints and joints
    • Several built-in joint types: fixed, distance, prismatic, revolute, spherical
    • Support for custom joints and other constraints using XPBD
  • Spatial queries
    • Raycasting, shapecasting, point projection and intersection tests
    • Ergonomic component-based API for raycasts and shapecasts
    • Flexible SpatialQuery system parameter
    • Spatial query filters
  • Debug rendering for colliders, AABBs, contacts, joints, sleeping, axes and spatial queries
  • Configurable scheduling and high customizability
  • Highly modular plugin architecture, freely extend and replace parts of the engine
  • Support for custom collision backends
  • f32/f64 precision (f32 by default)

You can find a more complete list along with documentation in the Table of contents on docs.rs.

Documentation

Usage example

First, add avian2d or avian3d to your dependencies in Cargo.toml:

# For 2D applications:
[dependencies]
avian2d = "0.1"

# For 3D applications:
[dependencies]
avian3d = "0.1"

# If you want to use the most up-to-date version, you can follow the main branch:
[dependencies]
avian3d = { git = "https://github.com/Jondolf/avian", branch = "main" }

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

use avian3d::prelude::*;
use bevy::prelude::*;

fn main() {
    App::new()
        // Enable physics
        .add_plugins((DefaultPlugins, PhysicsPlugins::default()))
        .add_systems(Startup, setup)
        .run();
}

fn setup(
    mut commands: Commands,
    mut meshes: ResMut<Assets<Mesh>>,
    mut materials: ResMut<Assets<StandardMaterial>>,
) {
    // Static physics object with a collision shape
    commands.spawn((
        RigidBody::Static,
        Collider::cylinder(4.0, 0.1),
        PbrBundle {
            mesh: meshes.add(Cylinder::new(4.0, 0.1)),
            material: materials.add(Color::WHITE),
            ..default()
        },
    ));

    // Dynamic physics object with a collision shape and initial angular velocity
    commands.spawn((
        RigidBody::Dynamic,
        Collider::cuboid(1.0, 1.0, 1.0),
        AngularVelocity(Vec3::new(2.5, 3.5, 1.5)),
        PbrBundle {
            mesh: meshes.add(Cuboid::new(1.0, 1.0, 1.0)),
            material: materials.add(Color::srgb_u8(124, 144, 255)),
            transform: Transform::from_xyz(0.0, 4.0, 0.0),
            ..default()
        },
    ));

    // Light
    commands.spawn(PointLightBundle {
        point_light: PointLight {
            shadows_enabled: true,
            ..default()
        },
        transform: Transform::from_xyz(4.0, 8.0, 4.0),
        ..default()
    });

    // Camera
    commands.spawn(Camera3dBundle {
        transform: Transform::from_xyz(-2.5, 4.5, 9.0).looking_at(Vec3::ZERO, Dir3::Y),
        ..default()
    });
}

A spinning cube falling onto a circular platform

More examples

You can find lots of 2D and 3D examples in /crates/avian2d/examples and /crates/avian3d/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:

# Manually specify dimension and precision. `parry-f64` enables collision detection using Parry.
cargo run --example cubes --no-default-features --features "3d f64 parry-f64"

Supported Bevy versions

Bevy Avian
0.14 0.1
Bevy XPBD versions (the predecessor of Avian)
Bevy Bevy XPBD
0.14 0.5
0.13 0.4
0.12 0.3
0.11 0.2
0.10 0.1

Future features

  • Per-entity collision hooks or callbacks
  • Flags for what types of collisions are active, like collisions against specific rigid body types, sensors or parents
  • Performance optimization (better broad phase, parallel solver, proper SIMD...)
  • Joint motors
  • Articulations, aka. multibody joints
  • Proper cross-platform determinism
  • Soft bodies (cloth and deformable solids)
  • Maybe fluid simulation

Contributing

If you encounter any problems, feel free to open issues or create pull requests. For larger changes and additions, it's better to open an issue or ask me for input before making a pull request.

You can also ask for help or ask questions on the Bevy Discord server's Avian Physics thread in #crate-help. My username on the Discord is Jondolf (@jondolfdev).

Acknowledgements

Huge thanks to the entire Bevy community for the incredible support! All of your contributions, insight and requests are a massive help in driving the state of physics in Bevy forward, and it's what keeps me motivated to build the best engine I can.

I would also like to give a special thanks to Johan Helsing for inspiring this project and helping me significantly in the early stages. His original tutorial series is the reason avian exists in the first place, and without his support and contributions, the project wouldn't be anywhere near where it is today.

License

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

at your option.

avian's People

Contributors

jondolf avatar johanhelsing avatar leshainc avatar rj avatar aztro-dev avatar nisevoid avatar waywardmonkeys avatar aceeri avatar grace125 avatar tremorris1999 avatar shanecelis avatar mattdm avatar mbrea-c avatar janhohenheim avatar datael avatar khanoto avatar kumikaya avatar dasisdormax avatar starwolfy avatar ollef avatar zhaop avatar perrypeak avatar ramon-oliveira avatar rigidity avatar hocop avatar shaddowspy avatar teamdman avatar zwazel avatar zentropivity avatar bnyu avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.