Skip to content

Commit

Permalink
Release v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bsawyer-ml committed May 17, 2023
1 parent 5942b94 commit 4c9c6b8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.6.1]
### Known Issues
- `MLWebRTC`: When disconnecting from a session, the camera does not shut down cleanly if the NativeSurface buffer format was used, causing the application to hang for as much as 30 seconds.
- `MLAnchors` API returns the same anchor poses after a headpose reset

### Deprecations & Removals
- Removed the ability to turn off near clipping plane enforcement in `MagicLeapCamera`.

## [1.6.0]
### Features
- Added `MLNotifications` API to suppress default notifications in medical SKUs.
Expand Down
2 changes: 1 addition & 1 deletion Editor/Inspectors/MagicLeapCameraEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public override void OnInspectorGUI()
serializedObject.Update();

EditorGUILayout.PropertyField(fixeIssuesProp, fixIssuesText);
EditorGUILayout.PropertyField(enforceNearClipProp, nearClipText);
//EditorGUILayout.PropertyField(enforceNearClipProp, nearClipText);
EditorGUILayout.PropertyField(enforceFarClipProp, farClipText);

EditorGUILayout.ObjectField(stereoConvergencePointProp, typeof(Transform), stereoConvergencePointText);
Expand Down
2 changes: 1 addition & 1 deletion Runtime/Tools/Scripts/MagicLeapCamera.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ public sealed class MagicLeapCamera : MonoBehaviour
private List<Transform> transforms = new List<Transform>();
private Unity.Jobs.JobHandle jobHandle;

[SerializeField]
private bool enforceNearClip = true;

[SerializeField]
private bool enforceFarClip = false;
[SerializeField]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.magicleap.unitysdk",
"displayName": "Magic Leap SDK",
"version": "1.6.0",
"version": "1.6.1",
"unity": "2022.2",
"description": "Magic Leap Unity SDK",
"keywords": [
Expand Down

0 comments on commit 4c9c6b8

Please sign in to comment.