Releases: ManevilleF/bevy_silk
Releases · ManevilleF/bevy_silk
0.9.0
What's Changed
- Physics fix by @ManevilleF in #25
- Feat/bevy 0.14 by @ManevilleF in #26
Full Changelog: 0.8.0...0.9.0
0.8.0
What's Changed
- Explicitly specify license in Cargo.toml by @TimJentzsch in #23
- Bevy 0.13 by @ManevilleF in #24
New Contributors
- @TimJentzsch made their first contribution in #23
Full Changelog: 0.7.0...0.8.0
0.7.0
What's Changed
- Rust 1.72.0 by @ManevilleF in #19
- Upgrade to Bevy 0.12 by @Jondolf in #21
- Add support for
bevy_xpbd
by @Jondolf in #22 - Collisions happen in fixed update by @ManevilleF in #20
New Contributors
Full Changelog: 0.6.0...0.7.0
0.6.0
0.5.0
What's Changed
- Removed bevy_inspector_egui deps by @ManevilleF in #13
- Vertex positions anchoring by @ManevilleF in #14
- Stick modes by @ManevilleF in #16
- Bevy 0.10 by @ManevilleF in #17
Full Changelog: 0.4.0...0.5.0
0.4.0
What's Changed
- Bevy 0.9 by @ManevilleF in #12 :
- Bump
bevy
to0.9.x
- Bump
bevy_rapier
to0.19.x
- Bump
bevy_inspector_egui
to0.14.x
- Modules refactoring
- Bump
Full Changelog: v0.3.0...0.4.0
0.3.0
0.2.0
0.2.0
New features:
- Collision support
- Custom anchors
CHANGELOG
Added
- bevy_rapier collision support:
- Added
rapier_collisions
feature - Added
rapier_collision
example - Added
ClothCollider
component
- Added
- Added
AccelerationSmoothing
enum, defining gravity/winds acceleration smoothing- Added related
acceleration_smoothing
field toClothConfig
- Added related
- Added custom anchor support with
VertexAnchor
API changes
- (BREAKING) Renamed
ClothBuilder::fixed_points
toanchored_vertex_ids
- Added
ClothBuilder::with_pinned_vertex_ids
method - Added
ClothBuilder::with_pinned_vertex_id
method - Added
ClothBuilder::with_anchored_vertex_ids
method - Added
ClothBuilder::with_anchored_vertex_id
method - Deprecated
ClothBuilder::with_fixed_points
in favor ofClothBuilder::with_pinned_vertex_ids
- Added
- Added
ClothBuilder::anchored_vertex_colors
field:- Added
ClothBuilder::with_pinned_vertex_colors
method - Added
ClothBuilder::with_pinned_vertex_color
method - Added
ClothBuilder::with_anchored_vertex_colors
method - Added
ClothBuilder::with_anchored_vertex_color
method
- Added
- Added
ClothBuilder::with_flat_normals
method- Deprecated
ClothBuilder::with_flat_normal_computation
in favor ofClothBuilder::with_flat_normals
- Deprecated
- Added
ClothBuilder::with_smooth_normals
method- Deprecated
ClothBuilder::with_smooth_normal_computation
in favor ofClothBuilder::with_smooth_normals
- Deprecated
Examples
- Added
rapier_collisions
example - Added
anchors
example