nsmryan / RustRoguelike

This Rust Roguelike is a Roguelike written in Rust.
17 stars 3 forks source link

Character Animator State Machine #385

Open MicroChasm opened 2 years ago

MicroChasm commented 2 years ago

I am documenting the variable values for the character animator state machine. The numbers are in increments of five to give room for animation variations while still keeping similar animations together with similar numbers. In other words, there can be at most 5 variations on one type of animation.

playerAnimState: Idle1 = 0 Walk1 = 5 Run1 = 10 SpeedVault1 = 15 HammerStrike1 = 20 DaggerStrike1 = 25 SpearStrike1 = 30 SpearStrike3 = 32 CrouchWalk1 = 35 Throwing = 40

SpearStrike2 was hanging Maya when I tried to export it, so it is left out of the game for now.