Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Documentation/DocSource/QuickStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if (!Permission.HasUserAuthorizedPermission(UCameraManager.HeadsetCameraPermissi
### Device Support

The Passthrough Camera API is restricted to the Quest 3 family and newer devices on Horizon OS version >= 74.
Check if the current device is supported with the [`CameraSupport.IsSupported`](~/api/Uralstech.UXR.QuestCamera.CameraSupport.yml) static property.
Check if the current device is supported with the [`UCameraManager.IsSupported`](~/api/Uralstech.UXR.QuestCamera.UCameraManager.yml#Uralstech_UXR_QuestCamera_UCameraManager_IsSupported) static property.

### Choosing the Camera

Expand Down Expand Up @@ -227,9 +227,9 @@ public class CameraTest : MonoBehaviour
private IEnumerator Start()
{
// Check if the current device is supported.
if (!CameraSupport.IsSupported)
if (!UCameraManager.IsSupported)
{
Debug.LogError("Device does not support the Passthrough Camera API!");
Debug.LogError("Runtime does not support the Passthrough Camera API!");
yield break;
}

Expand Down
2 changes: 1 addition & 1 deletion Documentation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ A Unity package to use the new Meta Quest Passthrough Camera API.

## Installation

This *should* work on any reasonably modern Unity version. Built and tested in Unity 6.3.
This *should* work on any reasonably modern Unity version. Built and tested in Unity 6.4.
Versions older than Unity 6.0 **REQUIRE** [com.utilities.async](https://github.com/RageAgainstThePixel/com.utilities.async/).

Since this package contains a native AAR plugin, it depends on the [External Dependency Manager for Unity (EDM4U)](https://github.com/googlesamples/unity-jar-resolver) to resolve native dependencies.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A Unity package to use the new Meta Quest Passthrough Camera API.

## Installation

This *should* work on any reasonably modern Unity version. Built and tested in Unity 6.3.
This *should* work on any reasonably modern Unity version. Built and tested in Unity 6.4.
Versions older than Unity 6.0 **REQUIRE** [com.utilities.async](https://github.com/RageAgainstThePixel/com.utilities.async/).

Since this package contains a native AAR plugin, it depends on the [External Dependency Manager for Unity (EDM4U)](https://github.com/googlesamples/unity-jar-resolver) to resolve native dependencies.
Expand Down
7 changes: 6 additions & 1 deletion UCamera/.gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
*.iml
.gradle
/local.properties
/.idea/
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
Expand Down
3 changes: 3 additions & 0 deletions UCamera/.idea/.gitignore

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

1 change: 1 addition & 0 deletions UCamera/.idea/.name

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

10 changes: 10 additions & 0 deletions UCamera/.idea/deploymentTargetSelector.xml

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

2 changes: 1 addition & 1 deletion UCamera/.idea/gradle.xml

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

1 change: 1 addition & 0 deletions UCamera/.idea/vcs.xml

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

9 changes: 0 additions & 9 deletions UCamera/README.md

This file was deleted.

2 changes: 0 additions & 2 deletions UCamera/UCamera/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion UCamera/UCamera/src/main/cpp/.gitignore

This file was deleted.

20 changes: 0 additions & 20 deletions UCamera/UCamera/src/main/cpp/CMakeLists.txt

This file was deleted.

73 changes: 0 additions & 73 deletions UCamera/UCamera/src/main/cpp/JNIExtensions.cpp

This file was deleted.

Loading