Added Anim_Action

stable-5.2
Armin Burgmeier 2010-01-24 17:16:21 +01:00
parent abe7aeb58e
commit d35f85d4aa
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#strict 2
// Wrappers for conventient calls to PlayAnimation
// Wrappers for convenient calls to PlayAnimation
global func Anim_Const(int Value)
{
@ -74,3 +74,8 @@ global func Anim_SinV(int Begin, int End, int Offset, int Prec)
if(Prec == nil) Prec = 1;
return [C4AVP_SinV, Begin, End, Offset, Prec];
}
global func Anim_Action()
{
return [C4AVP_Action];
}