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
Copy file name to clipboardExpand all lines: org.mixedrealitytoolkit.core/CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
4
4
5
+
## Unreleased
6
+
7
+
### Added
8
+
9
+
* Added new `editorDefault` field for debugging the various `DisplayType`s in-editor. [PR #1130](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1130)
Copy file name to clipboardExpand all lines: org.mixedrealitytoolkit.core/package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "org.mixedrealitytoolkit.core",
3
-
"version": "4.0.0-development.pre.3",
3
+
"version": "4.0.0-development.pre.4",
4
4
"description": "A limited collection of common interfaces and utilities that most MRTK packages share. Most implementations of these interfaces are contained in other packages in the MRTK ecosystem.",
Copy file name to clipboardExpand all lines: org.mixedrealitytoolkit.input/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
15
15
* Added `MRTKFocusFeature` to provide XrSession focus info to MRTK components. [PR #1057](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1057)
16
16
* Added input action focus handling to disable controller/hand tracked state when the XrSession goes out of focus. [PR #1057](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1057)
17
17
* Added support for XR_MSFT_hand_tracking_mesh and XR_ANDROID_hand_mesh on compatible runtimes. [PR #993](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/993)
18
+
* Added `Skybox` component to "MRTK XR Rig.prefab" for theming the skybox material. [PR #1130](https://github.com/MixedRealityToolkit/MixedRealityToolkit-Unity/pull/1130)
Copy file name to clipboardExpand all lines: org.mixedrealitytoolkit.theming/Binders/BaseThemeBinder.cs
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,31 @@
6
6
7
7
namespaceMixedReality.Toolkit.Theming
8
8
{
9
+
/// <summary>
10
+
/// Base class for a theme binder that binds a theme data value of type <typeparamref name="T"/> to a target component of type <typeparamref name="K"/>.
11
+
/// </summary>
9
12
publicabstractclassBaseThemeBinder<T,K>:IBinder
10
13
{
14
+
/// <summary>
15
+
/// The target component to apply the theme data to.
0 commit comments