mittens-engine 0.7.0

A Vulkan and OpenXR scene engine with ECS, reactive signals, and Meow Meow scripting
1
2
3
4
5
6
7
8
9
10
//! IK-adjacent humanoid policy systems.
//!
//! Houses the head-pose-sensitive body XZ translate follow module that
//! replaced the scrapped planar-deadzone heuristic.  The original
//! `ik_system` module remains at the parent level for chain-solver kinds
//! (AimConstraint, TwoBoneIK, FABRIK).

pub mod head_pose_body_xz_follow;

pub use head_pose_body_xz_follow::HeadPoseBodyXzFollowSystem;