- scriptified Hexen's Firedemon.

This commit is contained in:
Christoph Oelckers 2016-11-12 19:16:47 +01:00
commit 49ef541513
8 changed files with 264 additions and 258 deletions

View file

@ -449,3 +449,10 @@ void FaceMovementDirection(AActor *actor)
break;
}
}
DEFINE_ACTION_FUNCTION(AActor, FaceMovementDirection)
{
PARAM_SELF_PROLOGUE(AActor);
FaceMovementDirection(self);
return 0;
}