From d35f85d4aa1576790c9ff34b5a1d8fd146ce49a5 Mon Sep 17 00:00:00 2001 From: Armin Burgmeier Date: Sun, 24 Jan 2010 17:16:21 +0100 Subject: [PATCH] Added Anim_Action --- planet/System.c4g/MeshAnimation.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/planet/System.c4g/MeshAnimation.c b/planet/System.c4g/MeshAnimation.c index 9c70b3224..b7868350a 100644 --- a/planet/System.c4g/MeshAnimation.c +++ b/planet/System.c4g/MeshAnimation.c @@ -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]; +}