(Formerly part of GetGameParameter, which is now obsolete)
readonly static int Game.ViewCount
Returns the number of views in the game.
This is useful for script modules if you need to iterate through all the views for some reason.
Valid views are numbered from 1 to ViewCount.
Example:
Display("The game has %d views.", Game.ViewCount);
|