It has been suggested you maintain a variable to hold the direction. So, minimally you have this simple solution.
- Code: Select all
switch(dir)
{
case 0: // east
ChangeAnimation("Event Actor", "defend_e", FORWARD);
break;
case 1: // north east
ChangeAnimation("Event Actor", "defend_ne", FORWARD);
break;
// and so on
}
But, if you order your animations in the proper order (start with east, and rotate counterclockwise) you can use the getAnimName function.
- Code: Select all
ChangeAnimation("Event Actor", getAnimName(defend_east_index+dir), FORWARD);
Of course changing defend_east_index with the animindex value representing the defend_east animation. Same technique can be used with the other animations.