Megosztás a következőn keresztül:


WorldLockingManager.Settings Property

Definition

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;

Applies to