Immerse Settings Assets
The configuration of your Immerse packages is stored in ImmerseSettings assets. These assets are stored in the Resources folder, in an Immerse subdirectory. The resources folder is used as package configurations must be accessible at runtime.
If you should need access to any of these assets, they are accessible by using the ImmerseSettings.Get<T>
method where T
is an ImmerseSettings
type (e.g. ProjectInfo
).
var projectSettings = ImmerseSettings.Get<ProjectInfo>();
As many of the settings in these assets need to be synchronized with the Immerse platform (e.g. multiplayer settings), it is not recommended to make changes to these assets while in play mode.