Skip to content

Releases: ManevilleF/bevy_silk

0.9.0

12 Jul 07:45
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.8.0...0.9.0

0.8.0

22 Feb 08:44
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.7.0...0.8.0

0.7.0

02 Dec 12:57
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.6.0...0.7.0

0.6.0

20 Jul 10:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.0...0.6.0

0.5.0

20 Jul 10:43
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.4.0...0.5.0

0.4.0

30 Nov 11:37
Compare
Choose a tag to compare

What's Changed

  • Bevy 0.9 by @ManevilleF in #12 :
    • Bump bevy to 0.9.x
    • Bump bevy_rapier to 0.19.x
    • Bump bevy_inspector_egui to 0.14.x
    • Modules refactoring

Full Changelog: v0.3.0...0.4.0

0.3.0

03 Nov 09:52
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.2.0...v0.3.0

0.2.0

19 May 15:32
Compare
Choose a tag to compare

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 AccelerationSmoothing enum, defining gravity/winds acceleration smoothing
    • Added related acceleration_smoothing field to ClothConfig
  • Added custom anchor support with VertexAnchor

API changes

  • (BREAKING) Renamed ClothBuilder::fixed_points to anchored_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 of ClothBuilder::with_pinned_vertex_ids
  • 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 ClothBuilder::with_flat_normals method
    • Deprecated ClothBuilder::with_flat_normal_computation in favor of ClothBuilder::with_flat_normals
  • Added ClothBuilder::with_smooth_normals method
    • Deprecated ClothBuilder::with_smooth_normal_computation in favor of ClothBuilder::with_smooth_normals

Examples

  • Added rapier_collisions example
  • Added anchors example