Description
The UseMapFromLaunch
property of the MapInstance
class determines whether the map specified at the launch of the application should be used. This boolean property, when set to true
, indicates that the map defined during the launch process will be loaded and used in the scene. If set to false
, the map will not be automatically loaded from the launch configuration.
Usage
To use the UseMapFromLaunch
property, you can set it directly on an instance of the MapInstance
class. This property is useful when you want to control whether the map specified at launch should be automatically loaded or not.
Example usage:
var mapInstance = new MapInstance();
mapInstance.UseMapFromLaunch = true; // Use the map specified at launch
Example
var mapInstance = new MapInstance();
mapInstance.UseMapFromLaunch = true; // Use the map specified at launch