(Formerly part of GetGameParameter, which is now obsolete)
static int Game.GetFrameCountForLoop(int view, int loop)
Returns the number of frames in the specified loop of the specified view.
NOTE: This is a static function, and thus need to be called with Game. in front of it. See
the example for more.
Example:
int frameCount = Game.GetFrameCountForLoop(SWIMMING, 2);
Display("Loop 2 in SWIMMING view has %d frames.", frameCount);
See Also: Game.GetLoopCountForView,
Game.GetRunNextSettingForLoop,
Game.GetViewFrame
|