cortenforge-sim-core 0.6.0

Bevy-based simulation runtime primitives (modes, config, plugins) for the CortenForge stack.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use bevy::prelude::Resource;

/// Control configuration for articulated instrument actuation.
#[derive(Resource, Clone)]
pub struct ControlConfig {
    pub tension: f32,
    pub stiffness: f32,
    pub damping: f32,
    pub thrust: f32,
    pub target_speed: f32,
    pub linear_damping: f32,
    pub friction: f32,
}