Verlet Integration for Bevy

workflow

MIT licensed unsafe forbidden Crates.io Docs.rs dependency status

Simple Verlet points and sticks implementation for bevy.

Features

You can simply add a VerletPoint component on any entity with a Transform and the verlet physics will apply.

Connect points using VerletStick to constrain movement (see examples).

Lock some points by adding the VerletLocked component on a VerletPoint entity.

Customize friction and gravity with the VerletConfig resource.

Works in 2D and 3D.

Cargo features

  1. debug

This feature will add a system drawing debug lines for every stick using bevy_prototype_debug_lines

Examples

2D

  1. 2D Line

    cargo run --example 2d_line --features "debug"

    Alt

  2. 2D cloth

    cargo run --example 2d_cloth --features "debug"

    Alt

  3. 2D cloth cutting

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

    Note: the release flag is necessary for smooth running

    Alt

3D

Credits

Inspired by: - This Sebastian Lague video - This Coding Math course