bevymodphysx

Bevy plugin for NVIDIA PhysX using EmbarkStudios rust bindings.
Current PhysX version: 5.1.3

Disclaimer

This plugin is still in development, some core features are not yet implemented.
Open for pull requests and issues.

Usage

toml [dependencies] bevy_mod_physx = "0.1.0"

Example

```rust use bevy::prelude::; use bevy_mod_physx::prelude::;

fn main() { App::build() .addplugins(DefaultPlugins) .addplugin(PhysXPlugin) .addstartupsystem(setup) .run(); }

pub fn setup(mut commands: Commands) {

// Spawn a collision plane
commands.spawn(PxPlane::default()); 

// Spawn a dynamic rigid body
commands.spawn(( 
    PxDynamicActor,
    PxCollider::Capsule { radius: 0.1, depth: 0.4},
    Transform::from_translation(Vec3::new(0.0, 1.0, 0.0)),
));

} ```

Features

Not yet implemented

Compatibility

Compatibility of bevy_mod_physx versions:

| bevy_mod_physx | bevy | | :-- | :-- | | 0.1 | 0.10 |