(Formerly known as system.version, which is now obsolete)
readonly static String System.Version;
Returns the AGS engine version number. This could be useful from within script modules
in order to use features available on a particular engine version, or work around
any known bugs.
The string returned is the full version number, for example "2.71.833".
Example:
Display("AGS version: %s", System.Version);
will display the AGS version number
|