Skip to content

Commit

Permalink
V0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ManevilleF committed Dec 2, 2023
1 parent d3dbf84 commit 27b90ba
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.7.0

* Bevy 0.12 support (#14)
* Verlet physics always happens on `FixedUpdate` schedule (#12)

Expand Down Expand Up @@ -40,7 +42,8 @@

## 0.1.1

* The `VerletConfig::parallel_processing_batch_size` is only used for `VerletPoint` processing
* The `VerletConfig::parallel_processing_batch_size` is only used for
`VerletPoint` processing
* The cloth cutting example improved and scaled up
* The debug stick printing system moved in a private `debug` module

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_verlet"
version = "0.6.1"
version = "0.7.0"
edition = "2021"
authors = ["Felix de Maneville <felix.maneville@gmail.com>"]
repository = "https://github.com/ManevilleF/bevy_verlet"
Expand Down
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,14 @@
[![unsafe forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
[![Crates.io](https://img.shields.io/crates/v/bevy_verlet.svg)](https://crates.io/crates/bevy_verlet)
[![Docs.rs](https://docs.rs/bevy_verlet/badge.svg)](https://docs.rs/bevy_verlet)
[![dependency status](https://deps.rs/crate/bevy_verlet/0.6.1/status.svg)](https://deps.rs/crate/bevy_verlet)
[![dependency status](https://deps.rs/crate/bevy_verlet/0.7.0/status.svg)](https://deps.rs/crate/bevy_verlet)

<!-- cargo-sync-readme start -->

Simple Verlet points and sticks implementation for bevy.

If you are looking for cloth physics, please check [`bevy_silk`](https://github.com/ManevilleF/bevy_silk) instead,
If you are looking for cloth physics, please check
[`bevy_silk`](https://github.com/ManevilleF/bevy_silk) instead

## Bevy versions

Expand All @@ -24,6 +25,7 @@ If you are looking for cloth physics, please check [`bevy_silk`](https://github.
| 0.4.x | 0.8.x |
| 0.5.x | 0.9.x |
| 0.6.x | 0.11.x |
| 0.7.x | 0.12.x |

## Features

Expand Down Expand Up @@ -68,7 +70,7 @@ bevy gizmos
3. 2D cloth cutting

`cargo run --example 2d_cloth_cutter --features "debug"

![Alt](./docs/demo_cloth_cutting.gif "demo gif")

### 3D
Expand All @@ -79,5 +81,6 @@ bevy gizmos
## Credits

Inspired by:
- This [Sebastian Lague video](https://www.youtube.com/watch?v=PGk0rnyTa1U)
- This [Coding Math course](https://www.youtube.com/watch?v=3HjO_RGIjCU)

* This [Sebastian Lague video](https://www.youtube.com/watch?v=PGk0rnyTa1U)
* This [Coding Math course](https://www.youtube.com/watch?v=3HjO_RGIjCU)
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! Simple Verlet points and sticks implementation for bevy.
//!
//! If you are looking for cloth physics, please check [`bevy_silk`](https://github.com/ManevilleF/bevy_silk) instead,
//! If you are looking for cloth physics, please check
//! [`bevy_silk`](https://github.com/ManevilleF/bevy_silk) instead
//!
//! ## Bevy versions
//!
Expand All @@ -12,6 +13,7 @@
//! | 0.4.x | 0.8.x |
//! | 0.5.x | 0.9.x |
//! | 0.6.x | 0.11.x |
//! | 0.7.x | 0.12.x |
//!
//! ## Features
//!
Expand Down

0 comments on commit 27b90ba

Please sign in to comment.