(Formerly part of GetGameParameter, which is now obsolete)
static int Game.GetLoopCountForView(int view)
Returns the number of loops in 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 loops = Game.GetLoopCountForView(SWIMMING);
Display("The SWIMMING view (view %d) has %d loops.", SWIMMING, loops);
See Also: Game.GetRunNextSettingForLoop,
Game.GetFrameCountForLoop,
Game.GetViewFrame
|