Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rlidwka committed Aug 7, 2023
1 parent 39e0d49 commit b8d4ad6
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
## 0.3.0 - bevy 0.11 - 2023-08-07

### Added

- added default material as an argument for `PhysicsCore` plugin
- added articulation joint velocity and position sync

### Changed

- crate structure has been reworked, so many structs are moved to different places
- `bevy_mod_physx::SceneDescriptor` -> `bevy_mod_physx::core::scene::SceneDescriptor`
- `bevy_mod_physx::components::Geometry` -> `bevy_mod_physx::core::geometry::Geometry`
- `bevy_mod_physx::callbacks::OnAdvance` -> `bevy_mod_physx::types::OnAdvance`
- `bevy_mod_physx::plugins::Velocity` -> `bevy_mod_physx::plugins::velocity::Velocity`
- etc.
- visual debugger is disabled by default, add plugin `PhysicsCore::new().with_pvd()` to enable
- in articulations, `drive_xxx` is renamed to simply `xxx` (e.g. `drive_swing1` -> `swing1`)

### Fixed

- changing Transform of an articulation root now correctly syncs to physx
- fixed API for scaling an existing convex mesh

## 0.2.1 - bevy 0.11 - 2023-07-26

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_mod_physx"
version = "0.2.1"
version = "0.3.0"
authors = ["Alex Kocharin <[email protected]>"]
description = "PhysX plugin for Bevy"
documentation = "https://docs.rs/bevy_mod_physx"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ fn setup_physics(

|[]() |[]() |[]() |[]()
|--|--|--|--
| published | [bevy_mod_physx](https://crates.io/crates/bevy_mod_physx) v0.2.0 | Bevy 0.11 | PhysX 5
| published | [0.2.x - 0.3.x](https://crates.io/crates/bevy_mod_physx) | Bevy 0.11 | PhysX 5
| | | |
| git tags | [git:master](https://github.com/rlidwka/bevy_mod_physx) | Bevy 0.11 | PhysX 5
| | [git:a21b570](https://github.com/rlidwka/bevy_mod_physx/tree/a21b570b20a1e7ac22b5c86c54fcc1597760f2ec) | Bevy 0.11 | PhysX 4
Expand Down

0 comments on commit b8d4ad6

Please sign in to comment.