All files / systems/animation index.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17                                 
/**
 * Animation system exports for Black Trigram
 *
 * The animation package is organized into logical sub-packages:
 * - core: state machine, priorities, transitions, registries, timing, mappings
 * - builders: fluent builders, keyframe utilities, pose/phase applicators, rig helpers
 * - catalogs: curated animation sets for stances, attacks, defense, and locomotion
 * - systems: runtime helpers for expressions, head/body tracking, and recovery visualization
 *
 * All previous exports remain available through these barrels for backward compatibility.
 */
 
export * from "./core";
export * from "./builders";
export * from "./catalogs";
export * from "./systems";