readonly static bool System.SupportsGammaControl;
Gets whether the player's PC supports changing the screen's gamma control settings.
This must return true before you try and change the System.Gamma property.
The situations in which this will be supported are listed below.
Cross-Platform Support
Windows: Full-screen only
MS-DOS: No
Linux: No
MacOS: No
Example:
if (System.SupportsGammaControl) {
Display("We can change the system gamma level!");
}
will display a message if the system supports changing the gamma
See Also: System.Gamma
|