After poking around the editor, I found out where animations were listed. After scrolling through the list, I found an assortment of "bleedout" animations. I'm assuming these are what I am looking for.
BleedOut_Backward.hkx
BleedOut_Forward.hkx
BleedOut_Idle.hkx
BleedOut_Left.hkx
BleedOut_Right.hkx
BleedOut_TransOut.hkx
BleedOut_TurnLeft.hkx
BleedOut_TurnRight.hkx
BleedOut_TransIn.hkx
I looked at the wiki, and apparently I can play a single animation in one of two ways, PlayAnimation and PlayAnimationAndWait.
The one I think I want is PlayAnimationAndWait, but I think simply using PlayAnimation would work as well. The problem is that when I try and test the code, nothing happens.
I've tried
Game.GetPlayer().PlayAnimation("BleedOut_TransIn", "done")
And
Game.GetPlayer().PlayAnimation("BleedOut_TransIn")
Neither seem to be working. I've also tried adding the .hkx at the end but that didn't work either. Am I just not using the right names or what..?