Skip to content

Commit 6c16491

Browse files
authored
Merge pull request #5 from styly-dev/develop
v0.1.0
2 parents a062b74 + e45903c commit 6c16491

File tree

149 files changed

+9024
-2
lines changed

Some content is hidden

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

149 files changed

+9024
-2
lines changed

.gitignore

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
# Asset meta data should only be ignored when the corresponding asset is also ignored
2+
# Note: Wrote top line better, cause a few ignore .meta below(so, for Visual Scripting).
3+
!/**/[Aa]ssets/**/*.meta
4+
/**/[Aa]ssets/Unity.VisualScripting.Generated.meta
5+
/**/[Aa]ssets/Unity.VisualScripting.Generated/*
6+
7+
# This .gitignore file should be placed at the root of your Unity project directory
8+
#
9+
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
10+
#
11+
/[Ll]ibrary/
12+
/[Tt]emp/
13+
/[Oo]bj/
14+
/[Bb]uild/
15+
/[Bb]uilds/
16+
/[Ll]ogs/
17+
/[Uu]ser[Ss]ettings/
18+
19+
# MemoryCaptures can get excessive in size.
20+
# They also could contain extremely sensitive data
21+
/[Mm]emoryCaptures/
22+
23+
# Recordings can get excessive in size
24+
/[Rr]ecordings/
25+
26+
# Uncomment this line if you wish to ignore the asset store tools plugin
27+
# /[Aa]ssets/AssetStoreTools*
28+
29+
# Autogenerated Jetbrains Rider plugin
30+
/[Aa]ssets/Plugins/Editor/JetBrains*
31+
32+
# Visual Studio cache directory
33+
.vs/
34+
35+
# Gradle cache directory
36+
.gradle/
37+
38+
# Autogenerated VS/MD/Consulo solution and project files
39+
ExportedObj/
40+
.consulo/
41+
*.csproj
42+
*.unityproj
43+
*.sln
44+
*.suo
45+
*.tmp
46+
*.user
47+
*.userprefs
48+
*.pidb
49+
*.booproj
50+
*.svd
51+
*.pdb
52+
*.mdb
53+
*.opendb
54+
*.VC.db
55+
56+
# Unity3D generated meta files
57+
*.pidb.meta
58+
*.pdb.meta
59+
*.mdb.meta
60+
61+
# Unity3D generated file on crash reports
62+
sysinfo.txt
63+
64+
# Builds
65+
*.apk
66+
*.aab
67+
*.unitypackage
68+
*.app
69+
70+
# Crashlytics generated file
71+
crashlytics-build.properties
72+
73+
# Packed Addressables
74+
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
75+
76+
# Temporary auto-generated Android Assets
77+
/[Aa]ssets/[Ss]treamingAssets/aa.meta
78+
/[Aa]ssets/[Ss]treamingAssets/aa/*
79+
80+
# For temporary directories
81+
/[Aa]ssets/temp/*
82+
/[Aa]ssets/temp.meta
83+
/[Aa]ssets/_temp/*
84+
/[Aa]ssets/_temp.meta
85+
/[Aa]ssets/Samples/*
86+
/[Aa]ssets/Samples.meta
87+
/UIElementsSchema/
88+
89+
# link.xml (Generated by BuildPreProcessor/AvoidCodeStrip.cs)
90+
/[Aa]ssets/link.xml
91+
/[Aa]ssets/link.xml.meta
92+
93+
# BurstAot
94+
/Build_BurstDebugInformation_DoNotShip/StaticLibraries/lib_burst_generated.txt
95+
/ProjectSettings/BurstAotSettings_*.json
96+
/ProjectSettings/CommonBurstAotSettings.json
97+
98+
#Samples
99+
/[Aa]ssets/Samples
100+
/[Aa]ssets/Samples.meta
101+
102+
#TextMesh Pro files
103+
/[Aa]ssets/TextMesh Pro/*
104+
/[Aa]ssets/TextMesh Pro.meta
105+
106+
# Crash Report
107+
mono_crash.*.json
108+
109+
# XR Device Simulator
110+
/[Aa]ssets/UnityXRContent/*
111+
/[Aa]ssets/UnityXRContent.meta
112+
/[Aa]ssets/XR/UserSimulationSettings/*
113+
/[Aa]ssets/XR/UserSimulationSettings.meta
114+
ContentPackages/com.unity.xr-content.xr-sim-environments-*.tgz
115+
116+
# Others
117+
**/.DS_Store
118+
.idea
119+
/_[Bb]uild/
120+
/_[Bb]uild.meta
121+
/[Aa]ssets/_temp/
122+
/[Aa]ssets/_temp.meta
123+
/_Output/*
124+
/_Output.meta
125+
126+
# Enterprise API license
127+
/[Aa]ssets/Enterprise.license
128+
/[Aa]ssets/Enterprise.license.meta
129+

.vscode/extensions.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"visualstudiotoolsforunity.vstuc"
4+
]
5+
}

.vscode/launch.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Attach to Unity",
6+
"type": "vstuc",
7+
"request": "attach"
8+
}
9+
]
10+
}

.vscode/settings.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"files.exclude": {
3+
"**/.DS_Store": true,
4+
"**/.git": true,
5+
"**/.gitmodules": true,
6+
"**/*.booproj": true,
7+
"**/*.pidb": true,
8+
"**/*.suo": true,
9+
"**/*.user": true,
10+
"**/*.userprefs": true,
11+
"**/*.unityproj": true,
12+
"**/*.dll": true,
13+
"**/*.exe": true,
14+
"**/*.pdf": true,
15+
"**/*.mid": true,
16+
"**/*.midi": true,
17+
"**/*.wav": true,
18+
"**/*.gif": true,
19+
"**/*.ico": true,
20+
"**/*.jpg": true,
21+
"**/*.jpeg": true,
22+
"**/*.png": true,
23+
"**/*.psd": true,
24+
"**/*.tga": true,
25+
"**/*.tif": true,
26+
"**/*.tiff": true,
27+
"**/*.3ds": true,
28+
"**/*.3DS": true,
29+
"**/*.fbx": true,
30+
"**/*.FBX": true,
31+
"**/*.lxo": true,
32+
"**/*.LXO": true,
33+
"**/*.ma": true,
34+
"**/*.MA": true,
35+
"**/*.obj": true,
36+
"**/*.OBJ": true,
37+
"**/*.asset": true,
38+
"**/*.cubemap": true,
39+
"**/*.flare": true,
40+
"**/*.mat": true,
41+
"**/*.meta": true,
42+
"**/*.prefab": true,
43+
"**/*.unity": true,
44+
"build/": true,
45+
"Build/": true,
46+
"Library/": true,
47+
"library/": true,
48+
"obj/": true,
49+
"Obj/": true,
50+
"ProjectSettings/": true,
51+
"temp/": true,
52+
"Temp/": true
53+
},
54+
"dotnet.defaultSolution": "EnterpriseCameraAccessPlugin.sln"
55+
}

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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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: 508edb944d24e574595a91425051a8e4, type: 3}
13+
m_Name: PXR_PlatformSetting
14+
m_EditorClassIdentifier:
15+
entitlementCheckSimulation: 0
16+
startTimeEntitlementCheck: 0
17+
appID:
18+
useHighlight: 1
19+
deviceSN: []

Assets/Resources/PXR_PlatformSetting.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.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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: 261e5777ad4ae374eb318821653de6aa, type: 3}
13+
m_Name: PXR_ProjectSetting
14+
m_EditorClassIdentifier:
15+
useContentProtect: 0
16+
handTracking: 0
17+
openMRC: 1
18+
faceTracking: 0
19+
lipsyncTracking: 0
20+
eyeTracking: 0
21+
eyetrackingCalibration: 0
22+
enableETFR: 0
23+
latelatching: 0
24+
latelatchingDebug: 0
25+
enableSubsampled: 0
26+
bodyTracking: 0
27+
adaptiveResolution: 0
28+
stageMode: 0
29+
videoSeeThrough: 0
30+
spatialAnchor: 0
31+
superResolution: 0
32+
normalSharpening: 0
33+
qualitySharpening: 0
34+
fixedFoveatedSharpening: 0
35+
selfAdaptiveSharpening: 0

Assets/Resources/PXR_ProjectSetting.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.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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: 1
12+
m_Script: {fileID: 11500000, guid: 8e08befb1867d8945b4f1ddac43e65c5, type: 3}
13+
m_Name: PXR_SDKSettingAsset
14+
m_EditorClassIdentifier:
15+
ignoreSDKSetting: 1
16+
doNotShowBuildWarning: 0
17+
appIDChecked: 0

0 commit comments

Comments
 (0)