WorldLockingManager.Settings Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The configuration settings may only be set as a block. Get returns a snapshot of current settings, and set copies entire block.
public Microsoft.MixedReality.WorldLocking.Core.ManagerSettings Settings { get; set; }
member this.Settings : Microsoft.MixedReality.WorldLocking.Core.ManagerSettings with get, set
Public Property Settings As ManagerSettings
Property Value
Remarks
To change an individual field in the settings, retrieve the entire settings block, change the desired field(s), then set the entire block. E.g. var settings = mgr.Settings; settings.AutoLoad = false; settings.AutoSave = true; mgr.Settings = settings;