Skip to content

Commit

Permalink
Update manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
FejZa committed May 8, 2024
1 parent bfef470 commit 66ecdaf
Show file tree
Hide file tree
Showing 15 changed files with 111 additions and 29 deletions.
9 changes: 9 additions & 0 deletions Editor/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Copyright (c) Reality Collective. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System.Reflection;

[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyTitle("com.realitytoolkit.openxr.editor")]
[assembly: AssemblyCompany("Reality Collective")]
[assembly: AssemblyCopyright("Copyright (c) Reality Collective. All rights reserved.")]
11 changes: 11 additions & 0 deletions Editor/AssemblyInfo.cs.meta

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

9 changes: 9 additions & 0 deletions Runtime/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Copyright (c) Reality Collective. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using System.Reflection;

[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyTitle("com.realitytoolkit.openxr")]
[assembly: AssemblyCompany("Reality Collective")]
[assembly: AssemblyCopyright("Copyright (c) Reality Collective. All rights reserved.")]
11 changes: 11 additions & 0 deletions Runtime/AssemblyInfo.cs.meta

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

File renamed without changes.
8 changes: 8 additions & 0 deletions Runtime/Input/Controllers.meta

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

Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright (c) Reality Collective. All rights reserved.
// Copyright (c) Reality Collective. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using RealityToolkit.Input.Interfaces.Modules;

namespace RealityToolkit.OpenXR
namespace RealityToolkit.OpenXR.Input.Controllers
{
/// <summary>
/// Fully qualifies the <see cref="OpenXRPlatform"/> specific implementation of <see cref="IControllerServiceModule"/>.
Expand Down
19 changes: 19 additions & 0 deletions Runtime/Input/Controllers/OpenXRControllerServiceModule.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Copyright (c) Reality Collective. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using RealityCollective.ServiceFramework.Attributes;
using RealityToolkit.Input.Controllers;
using RealityToolkit.Input.Interfaces;
using UnityEngine;

namespace RealityToolkit.OpenXR.Input.Controllers
{
[RuntimePlatform(typeof(OpenXRPlatform))]
[System.Runtime.InteropServices.Guid("a5099f91-b390-4155-894a-309fbd73febb")]
public class OpenXRControllerServiceModule : BaseControllerServiceModule, IOpenXRControllerServiceModule
{
/// <inheritdoc />
public OpenXRControllerServiceModule(string name, uint priority, OpenXRControllerServiceModuleProfile profile, IInputService parentService)
: base(name, priority, profile, parentService) { }
}
}
19 changes: 19 additions & 0 deletions Runtime/Input/Controllers/OpenXRControllerServiceModuleProfile.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// Copyright (c) Reality Collective. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using RealityToolkit.Definitions.Controllers;

namespace RealityToolkit.OpenXR.Input.Controllers
{
/// <summary>
/// Configuration profile for <see cref="OpenXRControllerServiceModule"/>.
/// </summary>
public class OpenXRControllerServiceModuleProfile : BaseControllerServiceModuleProfile
{
/// <inheritdoc />
public override ControllerDefinition[] GetDefaultControllerOptions()
{
return null;
}
}
}

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

21 changes: 0 additions & 21 deletions Runtime/InputService/OpenXRControllerServiceModule.cs

This file was deleted.

2 changes: 1 addition & 1 deletion Runtime/OpenXRPlatform.cs.meta

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

16 changes: 11 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{
"name": "com.realitytoolkit.openxr",
"displayName": "RealityToolkit.OpenXR",
"description": "The openxr framework of the Reality Toolkit by the Reality Collective",
"description": "The openxr framework of the Reality Toolkit by the Reality Collective.",
"version": "1.0.0-pre.0",
"documentationUrl": "https://realitytoolkit.io",
"changelogUrl": "https://github.com/realitycollective/com.realitytoolkit.openxr/releases",
"licensesUrl": "https://github.com/realitycollective/com.realitytoolkit.openxr/blob/main/LICENSE.md",
"keywords": [
"VR",
"AR",
"XR",
"Mixed Reality"
],
"version": "1.0.0-pre.0",
"unity": "2021.3",
"homepage": "https://github.com/realitycollective",
"unity": "2022.3",
"homepage": "https://realitytoolkit.io",
"bugs": {
"url": "https://github.com/realitycollective/com.realitytoolkit.openxr/issues"
},
Expand All @@ -24,8 +27,11 @@
"email": "[email protected]",
"url": "https://github.com/realitycollective"
},
"publishConfig": {
"registry": "https://package.openupm.com"
},
"dependencies": {
"com.realitytoolkit.core": "1.0.0-pre.39",
"com.realitytoolkit.core": "1.0.0-pre.48",
"com.unity.xr.openxr": "1.10.0"
},
"assets": [
Expand Down

0 comments on commit 66ecdaf

Please sign in to comment.