// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.CameraSystem { /// /// Provides a property for enabling and disabling projection override behavior. The actual implementation is dependent on the platform. /// public interface IMixedRealityCameraProjectionOverrideProvider : IMixedRealityCameraSettingsProvider { /// /// Whether the camera's projection matrices are being overridden or not. /// /// /// Different platforms and devices may handle this differently, or not at all. /// Windows Mixed Reality refers to this as /// Reading Mode. /// bool IsProjectionOverrideEnabled { get; set; } } }