Skip to content

Commit

Permalink
Update core (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
FejZa authored May 15, 2024
1 parent a7106c2 commit c8d0dfb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
6 changes: 2 additions & 4 deletions Runtime/BoundaryService/MetaBoundaryServiceModule.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 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 RealityCollective.ServiceFramework.Attributes;
Expand Down Expand Up @@ -38,10 +38,8 @@ public MetaBoundaryServiceModule(string name, uint priority, BaseProfile profile
public bool IsPlatformConfigured => OculusApi.GetBoundaryConfigured();

/// <inheritdoc />
public override void Enable()
public override void Start()
{
base.Enable();

boundarySystem.SetupBoundary(this);
}

Expand Down
2 changes: 1 addition & 1 deletion Runtime/InputService/MetaControllerServiceModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public override void FixedUpdate()
}

/// <inheritdoc />
public override void Disable()
public override void Destroy()
{
foreach (var activeController in activeControllers)
{
Expand Down
2 changes: 1 addition & 1 deletion Runtime/InputService/MetaHandControllerServiceModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public override void Update()
}

/// <inheritdoc />
public override void Disable()
public override void Destroy()
{
foreach (var activeController in activeControllers)
{
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
"registry": "https://package.openupm.com"
},
"dependencies": {
"com.realitytoolkit.core": "1.0.0-pre.48",
"com.realitytoolkit.player": "1.0.4",
"com.realitytoolkit.boundary": "1.0.0-pre.4",
"com.realitytoolkit.core": "1.0.0-pre.50",
"com.realitytoolkit.player": "1.0.5-pre.6",
"com.realitytoolkit.boundary": "1.0.0-pre.5",
"com.unity.xr.oculus": "4.2.0"
},
"profiles": [
Expand All @@ -48,4 +48,4 @@
"path": "Assets~/"
}
]
}
}

0 comments on commit c8d0dfb

Please sign in to comment.