bevy_verlet 0.10.0

Verlet physics implementation in bevy
Documentation
1
2
3
4
5
6
7
use bevy::prelude::{Component, Reflect};

/// Marker component preventing application of [`VerletPoint`] physics.
///
/// [`VerletPoint`]: crate::VerletPoint
#[derive(Debug, Copy, Clone, Component, Reflect)]
pub struct VerletLocked;