You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This functionality has been deprecated by the XR Origin component. This property has never had an effect in MRTK3 and will be removed in a future release.
Copy file name to clipboardExpand all lines: org.mixedrealitytoolkit.core/CHANGELOG.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
8
8
9
9
* Fixed "The type MixedReality.Toolkit.Core MixedReality.Toolkit.Experimental.BubbleChildHoverEvents/TrickleChildHoverEvents/BubbleChildSelectEvents/TrickleChildSelectEvents is being serialized by [SerializeReference], but is missing the [Serializable] attribute." on Unity 6.3. [PR #1107](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1107)
10
10
11
+
## Deprecated
12
+
13
+
* Deprecated `AdjustTrackingOrigin` on `CameraSettings`. This functionality has been deprecated by the XR Origin component. This property has never had an effect in MRTK3 and will be removed in a future release. [PR #1110](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1110)
14
+
11
15
## [3.3.0] - 2025-11-12
12
16
13
17
### Changed
@@ -45,8 +49,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
45
49
* Added IsProximityHovered property of type TimedFlag to detect when a button starts being hovered or on interactor proximity and when it stops being hovered or on proximity of any interactor. [PR #611](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/611)
* Fixed support for UPM package publishing in the Unity Asset Store. [PR #519](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/519)
52
-
* Fix warning and event triggered on disabled StatefulInteractable after changing speech settings [PR #591](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/591)[PR #608](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/608)
55
+
* Fix warning and event triggered on disabled StatefulInteractable after changing speech settings [PR #591](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/591)[PR #608](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/608)
/// The default value to apply to <see cref="FarPlaneDistance"/> if on a transparent XR headset.
128
128
/// </summary>
@@ -141,18 +141,11 @@ public float FarPlaneDistance
141
141
set=>farPlaneDistance=value;
142
142
}
143
143
144
-
[SerializeField]
145
-
[Tooltip("Should the tracking origin be adjusted base on camera type?")]
146
-
privatebooladjustTrackingOrigin=true;
147
-
148
144
/// <summary>
149
145
/// Should the tracking origin be adjusted based on camera type?
150
146
/// </summary>
151
-
publicboolAdjustTrackingOrigin
152
-
{
153
-
get=>adjustTrackingOrigin;
154
-
set=>adjustTrackingOrigin=value;
155
-
}
147
+
[Obsolete("This functionality has been deprecated by the XR Origin component. This property has never had an effect in MRTK3 and will be removed in a future release.")]
148
+
publicboolAdjustTrackingOrigin{get;set;}
156
149
157
150
[SerializeField]
158
151
[Tooltip("Should the quality level be adjusted based on camera type?")]
@@ -174,7 +167,7 @@ public bool AdjustQualityLevel
174
167
175
168
/// <summary>
176
169
/// The default value to apply to <see cref="QualityLevel"/> if on a transparent XR headset.
177
-
/// </summary>
170
+
/// </summary>
178
171
publicstaticreadonlyintDefaultQualityLevelTransparent=0;// Very Low
0 commit comments