Skip to content

Commit d3cb043

Browse files
committed
Added project files.
1 parent baa8f3d commit d3cb043

File tree

85 files changed

+1898
-118
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+1898
-118
lines changed

.github/workflows/upm-subtree-split.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919

2020
- uses: RageAgainstThePixel/upm-subtree-split@v1.1
2121
with:
22-
package-root: "**/Packages/com.uralstech.package-name"
22+
package-root: "**/Packages/com.uralstech.uxr.utilities"

Documentation/DocSource/QuickStart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Please note that the code provided in this page is *purely* for learning purpose
44

55
## Breaking Changes Notice
66

7-
If you've just updated the package, it is recommended to check the [*changelogs*](https://github.com/Uralstech/PackageName/releases) for information on breaking changes.
7+
If you've just updated the package, it is recommended to check the [*changelogs*](https://github.com/Uralstech/UXR.Utilities/releases) for information on breaking changes.

Documentation/docfx.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
{
44
"src": [
55
{
6-
"src": "../PackageName",
6+
"src": "../UXR.Utilities",
77
"files": [
8-
"Packages/com.uralstech.package-name/Runtime/**/*.cs"
8+
"Packages/com.uralstech.uxr.utilities/Runtime/**/*.cs"
99
]
1010
}
1111
],
@@ -39,9 +39,9 @@
3939
"modern"
4040
],
4141
"globalMetadata": {
42-
"_appName": "PackageName",
43-
"_appTitle": "PackageName",
44-
"_appFooter": "(C) 2024 URAV ADVANCED LEARNING SYSTEMS PRIVATE LIMITED, licensed under the <a href=\"https://github.com/Uralstech/PackageName/blob/master/LICENSE\">Apache License, Version 2.0</a>.",
42+
"_appName": "UXR.Utilities",
43+
"_appTitle": "UXR.Utilities",
44+
"_appFooter": "(C) 2024 URAV ADVANCED LEARNING SYSTEMS PRIVATE LIMITED, licensed under the <a href=\"https://github.com/Uralstech/UXR.Utilities/blob/master/LICENSE\">Apache License, Version 2.0</a>.",
4545
"_enableSearch": true
4646
},
4747
"fileMetadata": {
@@ -59,7 +59,7 @@
5959
}
6060
},
6161
"sitemap": {
62-
"baseUrl": "https://uralstech.github.io/PackageName",
62+
"baseUrl": "https://uralstech.github.io/UXR.Utilities",
6363
"priority": 1.0,
6464
"changefreq": "monthly"
6565
}

Documentation/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
_layout: landing
33
---
44

5-
# PackageName
5+
# UXR.Utilities
66

7-
PackageDesc
7+
Random helper scripts I made for Meta Quest XR projects.
88

9-
[![openupm](https://img.shields.io/npm/v/com.uralstech.package-name?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.uralstech.package-name/)
10-
[![openupm](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=downloads&query=%24.downloads&suffix=%2Fmonth&url=https%3A%2F%2Fpackage.openupm.com%2Fdownloads%2Fpoint%2Flast-month%2Fcom.uralstech.package-name)](https://openupm.com/packages/com.uralstech.package-name/)
9+
[![openupm](https://img.shields.io/npm/v/com.uralstech.uxr.utilities?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.uralstech.uxr.utilities/)
10+
[![openupm](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=downloads&query=%24.downloads&suffix=%2Fmonth&url=https%3A%2F%2Fpackage.openupm.com%2Fdownloads%2Fpoint%2Flast-month%2Fcom.uralstech.uxr.utilities)](https://openupm.com/packages/com.uralstech.uxr.utilities/)
1111

1212
## Installation
1313

@@ -24,19 +24,19 @@ This *should* work on any reasonably modern Unity version. Built and tested in U
2424
- `com.uralstech`
2525
4. Open the Unity Package Manager window (`Window` -> `Package Manager`)
2626
5. Change the registry from `Unity` to `My Registries`
27-
6. Add the `PackageName` package
27+
6. Add the `UXR.Utilities` package
2828

2929
# [Unity Package Manager](#tab/upm)
3030

3131
1. Open the Unity Package Manager window (`Window` -> `Package Manager`)
3232
2. Select the `+` icon and `Add package from git URL...`
3333
3. Paste the UPM branch URL and press enter:
34-
- `https://github.com/Uralstech/PackageName.git#upm`
34+
- `https://github.com/Uralstech/UXR.Utilities.git#upm`
3535

3636
# [GitHub Clone](#tab/github)
3737

3838
1. Clone or download the repository from the desired branch (master, preview/unstable)
39-
2. Drag the package folder `PackageName/PackageName/Packages/com.uralstech.package-name` into your Unity project's `Packages` folder
39+
2. Drag the package folder `UXR.Utilities/UXR.Utilities/Packages/com.uralstech.uxr.utilities` into your Unity project's `Packages` folder
4040

4141
---
4242

@@ -46,4 +46,4 @@ Do not use preview versions (i.e. versions that end with "-preview") for product
4646

4747
## Documentation
4848

49-
See <https://uralstech.github.io/PackageName/DocSource/QuickStart.html> or `APIReferenceManual.pdf` and `Documentation.pdf` in the package documentation for the reference manual and tutorial.
49+
See <https://uralstech.github.io/UXR.Utilities/DocSource/QuickStart.html> or `APIReferenceManual.pdf` and `Documentation.pdf` in the package documentation for the reference manual and tutorial.

PackageName/Packages/com.uralstech.package-name/Runtime/PackageName.asmdef

Lines changed: 0 additions & 14 deletions
This file was deleted.

PackageName/Packages/com.uralstech.package-name/package.json

Lines changed: 0 additions & 23 deletions
This file was deleted.

PackageName/Packages/manifest.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

PackageName/Packages/packages-lock.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

PackageName/ProjectSettings/ProjectVersion.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

README.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
---
2-
Replace "PackageName" with the package's name in PascalCase and "package-name" with the name in hyphenated lowercase.
3-
Replace "PackageDesc" with the package's description.
4-
---
1+
# UXR.Utilities
52

6-
# PackageName
3+
Random helper scripts I made for Meta Quest XR projects.
74

8-
PackageDesc
9-
10-
[![openupm](https://img.shields.io/npm/v/com.uralstech.package-name?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.uralstech.package-name/)
11-
[![openupm](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=downloads&query=%24.downloads&suffix=%2Fmonth&url=https%3A%2F%2Fpackage.openupm.com%2Fdownloads%2Fpoint%2Flast-month%2Fcom.uralstech.package-name)](https://openupm.com/packages/com.uralstech.package-name/)
5+
[![openupm](https://img.shields.io/npm/v/com.uralstech.uxr.utilities?label=openupm&registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.uralstech.uxr.utilities/)
6+
[![openupm](https://img.shields.io/badge/dynamic/json?color=brightgreen&label=downloads&query=%24.downloads&suffix=%2Fmonth&url=https%3A%2F%2Fpackage.openupm.com%2Fdownloads%2Fpoint%2Flast-month%2Fcom.uralstech.uxr.utilities)](https://openupm.com/packages/com.uralstech.uxr.utilities/)
127

138
## Installation
149

@@ -25,24 +20,24 @@ This *should* work on any reasonably modern Unity version. Built and tested in U
2520
- `com.uralstech`
2621
4. Open the Unity Package Manager window (`Window` -> `Package Manager`)
2722
5. Change the registry from `Unity` to `My Registries`
28-
6. Add the `PackageName` package
23+
6. Add the `UXR.Utilities` package
2924

3025
### Unity Package Manager
3126

3227
1. Open the Unity Package Manager window (`Window` -> `Package Manager`)
3328
2. Select the `+` icon and `Add package from git URL...`
3429
3. Paste the UPM branch URL and press enter:
35-
- `https://github.com/Uralstech/PackageName.git#upm`
30+
- `https://github.com/Uralstech/UXR.Utilities.git#upm`
3631

3732
### GitHub Clone
3833

3934
1. Clone or download the repository from the desired branch (master, preview/unstable)
40-
2. Drag the package folder `PackageName/PackageName/Packages/com.uralstech.package-name` into your Unity project's `Packages` folder
35+
2. Drag the package folder `UXR.Utilities/UXR.Utilities/Packages/com.uralstech.uxr.utilities` into your Unity project's `Packages` folder
4136

4237
## Preview Versions
4338

4439
Do not use preview versions (i.e. versions that end with "-preview") for production use as they are unstable and untested.
4540

4641
## Documentation
4742

48-
See <https://uralstech.github.io/PackageName/DocSource/QuickStart.html> or `APIReferenceManual.pdf` and `Documentation.pdf` in the package documentation for the reference manual and tutorial.
43+
See <https://uralstech.github.io/UXR.Utilities/DocSource/QuickStart.html> or `APIReferenceManual.pdf` and `Documentation.pdf` in the package documentation for the reference manual and tutorial.
File renamed without changes.

PackageName/.gitignore renamed to UXR.Utilities/.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#
33
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
44
#
5-
/[Aa]ssets/
65
/[Ll]ibrary/
76
/[Tt]emp/
87
/[Oo]bj/
@@ -72,4 +71,4 @@ crashlytics-build.properties
7271
/[Aa]ssets/[Ss]treamingAssets/aa.meta
7372
/[Aa]ssets/[Ss]treamingAssets/aa/*
7473

75-
/[Aa]ssets
74+
/[Aa]ssets/[Ss]cenes/
File renamed without changes.

UXR.Utilities/Assets/Oculus.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
%YAML 1.1
2+
%TAG !u! tag:unity3d.com,2011:
3+
--- !u!114 &11400000
4+
MonoBehaviour:
5+
m_ObjectHideFlags: 0
6+
m_CorrespondingSourceObject: {fileID: 0}
7+
m_PrefabInstance: {fileID: 0}
8+
m_PrefabAsset: {fileID: 0}
9+
m_GameObject: {fileID: 0}
10+
m_Enabled: 1
11+
m_EditorHideFlags: 0
12+
m_Script: {fileID: 11500000, guid: 05d394ae2a81edd4cbc3c51917e766e3, type: 3}
13+
m_Name: OculusProjectConfig
14+
m_EditorClassIdentifier:
15+
targetDeviceTypes: 0100000002000000030000000400000005000000
16+
allowOptional3DofHeadTracking: 0
17+
handTrackingSupport: 1
18+
handTrackingFrequency: 0
19+
handTrackingVersion: 0
20+
anchorSupport: 0
21+
sharedAnchorSupport: 0
22+
renderModelSupport: 1
23+
trackedKeyboardSupport: 0
24+
bodyTrackingSupport: 0
25+
faceTrackingSupport: 0
26+
eyeTrackingSupport: 0
27+
virtualKeyboardSupport: 2
28+
colocationSessionSupport: 0
29+
sceneSupport: 0
30+
boundaryVisibilitySupport: 0
31+
disableBackups: 1
32+
enableNSCConfig: 1
33+
securityXmlPath:
34+
skipUnneededShaders: 0
35+
enableIL2CPPLTO: 0
36+
removeGradleManifest: 1
37+
focusAware: 1
38+
requiresSystemKeyboard: 0
39+
experimentalFeaturesEnabled: 0
40+
insightPassthroughEnabled: 0
41+
_insightPassthroughSupport: 0
42+
_processorFavor: 0
43+
systemSplashScreen: {fileID: 0}
44+
systemSplashScreenType: 0
45+
_systemLoadingScreenBackground: 0

UXR.Utilities/Assets/Oculus/OculusProjectConfig.asset.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UXR.Utilities/Assets/Plugins.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UXR.Utilities/Assets/Plugins/Android.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:installLocation="auto">
3+
<application android:label="@string/app_name" android:icon="@mipmap/app_icon" android:allowBackup="false">
4+
<activity android:theme="@style/Theme.AppCompat.DayNight.NoActionBar" android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode" android:launchMode="singleTask" android:name="com.unity3d.player.UnityPlayerGameActivity" android:excludeFromRecents="true" android:exported="true">
5+
<intent-filter>
6+
<action android:name="android.intent.action.MAIN" />
7+
<category android:name="android.intent.category.LAUNCHER" />
8+
<category android:name="com.oculus.intent.category.VR" />
9+
</intent-filter>
10+
<meta-data android:name="com.oculus.vr.focusaware" android:value="true" />
11+
</activity>
12+
<meta-data android:name="unityplayer.SkipPermissionsDialog" android:value="false" />
13+
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only" />
14+
<meta-data android:name="com.oculus.ossplash.background" android:value="black" />
15+
<meta-data android:name="com.oculus.telemetry.project_guid" android:value="efc44781-1d84-466a-b6ef-591038fcfbb6" />
16+
<meta-data android:name="com.oculus.supportedDevices" android:value="quest|quest2|questpro|quest3|quest3s" />
17+
</application>
18+
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" />
19+
</manifest>

UXR.Utilities/Assets/Plugins/Android/AndroidManifest.xml.meta

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

UXR.Utilities/Assets/Resources.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
%YAML 1.1
2+
%TAG !u! tag:unity3d.com,2011:
3+
--- !u!114 &11400000
4+
MonoBehaviour:
5+
m_ObjectHideFlags: 0
6+
m_CorrespondingSourceObject: {fileID: 0}
7+
m_PrefabInstance: {fileID: 0}
8+
m_PrefabAsset: {fileID: 0}
9+
m_GameObject: {fileID: 0}
10+
m_Enabled: 1
11+
m_EditorHideFlags: 0
12+
m_Script: {fileID: 11500000, guid: a7d75bea1662418ab5f9e0c22110bc09, type: 3}
13+
m_Name: ImmersiveDebuggerSettings
14+
m_EditorClassIdentifier:
15+
debugTypes: []
16+
immersiveDebuggerEnabled: 0
17+
immersiveDebuggerDisplayAtStartup: 0
18+
immersiveDebuggerToggleDisplayButton: 2
19+
showInspectors: 0
20+
showConsole: 0
21+
followOverride: 1
22+
rotateOverride: 0
23+
showInfoLog: 0
24+
showWarningLog: 1
25+
showErrorLog: 1
26+
collapsedIdenticalLogEntries: 0
27+
maximumNumberOfLogEntries: 1000
28+
panelDistance: 1
29+
createEventSystem: 1
30+
automaticLayerCullingUpdate: 1
31+
panelLayer: 20
32+
meshRendererLayer: 21
33+
overlayDepth: 10
34+
inspectedDataEnabled:
35+
inspectedDataAssets: []
36+
useCustomIntegrationConfig: 0
37+
customIntegrationConfigClassName:

UXR.Utilities/Assets/Resources/ImmersiveDebuggerSettings.asset.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)