The Type
property of the ProjectConfig
class specifies the type of addon. This property is a string and currently supports the value "game". It is used to define the nature of the addon being configured.
The Type
property of the ProjectConfig
class specifies the type of addon. This property is a string and currently supports the value "game". It is used to define the nature of the addon being configured.
To set or retrieve the type of an addon, use the Type
property. This property is typically used in the context of configuring a project within the Sandbox environment.
// Example of setting the Type property var projectConfig = new ProjectConfig(); projectConfig.Type = "game"; // Example of getting the Type property string addonType = projectConfig.Type; // addonType should be "game"