os_get_config

Returns the name of the current configuration.

Syntax:

os_get_config()


Returns: String


Description

This function returns the name (as a string) of the currently selected configuration for your game. For more information on configurations please see the section Advanced Use: Configurations.

NOTE: Configurations are only available in the Professional Version of GameMaker: Studio.


Example:

if os_get_config() = "Free_Version"
   {
   ads_enable((room_width / 2) - 100, 0, 200, 75, 60);
   }

The above code will check to see which configuration is being used and if it is the one called "Free_Version", ads will be enabled in the game.


Back: Operating Systems
Next: os_get_language
© Copyright YoYo Games Ltd. 2018 All Rights Reserved