Skip to content

Commit

Permalink
0.0.9-preview - 2019/02/11
Browse files Browse the repository at this point in the history
@2018.3
  • Loading branch information
ErikMoczi committed Mar 3, 2019
1 parent d9b01df commit 0665d44
Show file tree
Hide file tree
Showing 30 changed files with 1,242 additions and 10 deletions.
9 changes: 9 additions & 0 deletions package/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [0.0.9-preview] - 2019-01-28
### Added
- focus callback
- LUID, Vulkan and Preinit support
- XRStats support
- Device relative eye positions

### Fixes
- cleaned up device naming

## [0.0.8-preview] - 2019-01-16
### Fixes
Expand Down
2 changes: 1 addition & 1 deletion package/Runtime/Android/OVRPlugin.aar.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified package/Runtime/Android/libXRSDKOculus.so
Binary file not shown.
2 changes: 1 addition & 1 deletion package/Runtime/Android/libXRSDKOculus.so.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package/Runtime/OculusLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Unity.XR.Oculus
{
public class OculusLoader : XRLoaderHelper
#if UNITY_EDITOR
//, IXRLoaderPreInit
, IXRLoaderPreInit
#endif
{
private static List<XRSessionSubsystemDescriptor> s_SessionSubsystemDescriptors = new List<XRSessionSubsystemDescriptor>();
Expand Down
2 changes: 1 addition & 1 deletion package/Runtime/x64/OVRPlugin.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified package/Runtime/x64/XRSDKOculus.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion package/Runtime/x64/XRSDKOculus.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package/Runtime/x86/OVRPlugin.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified package/Runtime/x86/XRSDKOculus.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion package/Runtime/x86/XRSDKOculus.dll.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions package/Tests/Editor.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 32 additions & 0 deletions package/Tests/Editor/EditorTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using UnityEngine.TestTools;
using NUnit.Framework;
using System.Collections;


namespace Unity.XR.Oculus.Editor.Tests
{
class EditorTests
{
internal class SmokeTests : TestBaseSetup
{
[Test]
public void SceneIsCreated()
{
Assert.IsNotNull(m_Camera, "Camera was not created");
Assert.IsNotNull(m_Light, "Light was not created");
Assert.IsNotNull(m_Cube, "Cube was not created");
}

[UnityTest]
public IEnumerator XrSdkAssetsCreated()
{
Assert.IsNotNull(m_TrackHead, "Tracking the Head Node was not created");
yield return null;
Assert.IsNotNull(m_TrackingRig, "Tracking rig was not created");
yield return null;
Assert.IsNotNull(m_XrManager, "Manager and assets was not created");
yield return null;
}
}
}
}
11 changes: 11 additions & 0 deletions package/Tests/Editor/EditorTests.cs.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions package/Tests/Editor/Resources.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions package/Tests/Editor/Resources/TestSetup.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions package/Tests/Editor/Resources/TestSetup/OculusLoader.asset
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 03bc68f14d65e7747a59d5ff74bd199b, type: 3}
m_Name: OculusLoader
m_EditorClassIdentifier:

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0665d44

Please sign in to comment.