An animatable enumerator for clearing flags.
#include <AnimEnum.h>

Public Member Functions |
|
| ClearAnimFlagEnumProc (DWORD f) | |
| Constructor. |
|
| int | proc (Animatable *anim, Animatable *client, int subNum) |
| This is the method called by
EnumAnimTree(). |
|
| ClearAnimFlagEnumProc | ( | DWORD | f | ) | [inline] |
Constructor.
: flag(f)
{
// empty
}
| int proc | ( | Animatable * | anim, |
| Animatable * | client, | ||
| int | subNum | ||
| ) | [inline, virtual] |
This is the method called by EnumAnimTree().
| anim | The sub anim. |
| client | The client anim. This is the parent with a sub-anim of anim. |
| subNum | The index of the sub-anim that anim is to client. For example, if you were to call client->SubAnim(subNum) it would return anim. |
Implements AnimEnum.
{
UNUSED_PARAM(client);
UNUSED_PARAM(subNum);
anim->ClearAFlag(flag);
return ANIM_ENUM_PROCEED;
}