Merge branch 'programming'
This commit is contained in:
commit
00fb913e2a
@ -5,6 +5,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
namespace "**NAMESPACE**"
|
||||||
ndkPath "**NDKPATH**"
|
ndkPath "**NDKPATH**"
|
||||||
|
|
||||||
compileSdkVersion 34
|
compileSdkVersion 34
|
||||||
@ -16,7 +17,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 29
|
minSdkVersion 32
|
||||||
targetSdkVersion 34
|
targetSdkVersion 34
|
||||||
applicationId '**APPLICATIONID**'
|
applicationId '**APPLICATIONID**'
|
||||||
ndk {
|
ndk {
|
||||||
|
@ -0,0 +1,61 @@
|
|||||||
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation project(':unityLibrary')
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
ndkPath "**NDKPATH**"
|
||||||
|
|
||||||
|
compileSdkVersion 34
|
||||||
|
buildToolsVersion '**BUILDTOOLS**'
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_11
|
||||||
|
targetCompatibility JavaVersion.VERSION_11
|
||||||
|
}
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
minSdkVersion 29
|
||||||
|
targetSdkVersion 34
|
||||||
|
applicationId '**APPLICATIONID**'
|
||||||
|
ndk {
|
||||||
|
abiFilters **ABIFILTERS**
|
||||||
|
}
|
||||||
|
versionCode **VERSIONCODE**
|
||||||
|
versionName '**VERSIONNAME**'
|
||||||
|
}
|
||||||
|
|
||||||
|
aaptOptions {
|
||||||
|
noCompress = **BUILTIN_NOCOMPRESS** + unityStreamingAssets.tokenize(', ')
|
||||||
|
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
|
||||||
|
}**SIGN**
|
||||||
|
|
||||||
|
lintOptions {
|
||||||
|
abortOnError false
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
debug {
|
||||||
|
minifyEnabled **MINIFY_DEBUG**
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt')**SIGNCONFIG**
|
||||||
|
jniDebuggable true
|
||||||
|
}
|
||||||
|
release {
|
||||||
|
minifyEnabled **MINIFY_RELEASE**
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt')**SIGNCONFIG**
|
||||||
|
}
|
||||||
|
}**PACKAGING_OPTIONS****PLAY_ASSET_PACKS****SPLITS**
|
||||||
|
**BUILT_APK_LOCATION**
|
||||||
|
bundle {
|
||||||
|
language {
|
||||||
|
enableSplit = false
|
||||||
|
}
|
||||||
|
density {
|
||||||
|
enableSplit = false
|
||||||
|
}
|
||||||
|
abi {
|
||||||
|
enableSplit = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}**SPLITS_VERSION_CODE****LAUNCHER_SOURCE_BUILD_SETUP**
|
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 60167e59dc09d464eba868a3b9c2361d
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -6,6 +6,7 @@ dependencies {
|
|||||||
**DEPS**}
|
**DEPS**}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
namespace "com.unity3d.player"
|
||||||
ndkPath "**NDKPATH**"
|
ndkPath "**NDKPATH**"
|
||||||
|
|
||||||
compileSdkVersion 34
|
compileSdkVersion 34
|
||||||
@ -17,7 +18,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 29
|
minSdkVersion 32
|
||||||
targetSdkVersion 34
|
targetSdkVersion 34
|
||||||
ndk {
|
ndk {
|
||||||
abiFilters **ABIFILTERS**
|
abiFilters **ABIFILTERS**
|
||||||
|
41
Viagg-io/Assets/Plugins/Android/mainTemplate.gradle.backup
Normal file
41
Viagg-io/Assets/Plugins/Android/mainTemplate.gradle.backup
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
apply plugin: 'com.android.library'
|
||||||
|
**APPLY_PLUGINS**
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
|
**DEPS**}
|
||||||
|
|
||||||
|
android {
|
||||||
|
ndkPath "**NDKPATH**"
|
||||||
|
|
||||||
|
compileSdkVersion 34
|
||||||
|
buildToolsVersion '**BUILDTOOLS**'
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility JavaVersion.VERSION_11
|
||||||
|
targetCompatibility JavaVersion.VERSION_11
|
||||||
|
}
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
minSdkVersion 29
|
||||||
|
targetSdkVersion 34
|
||||||
|
ndk {
|
||||||
|
abiFilters **ABIFILTERS**
|
||||||
|
}
|
||||||
|
versionCode **VERSIONCODE**
|
||||||
|
versionName '**VERSIONNAME**'
|
||||||
|
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
|
||||||
|
}
|
||||||
|
|
||||||
|
lintOptions {
|
||||||
|
abortOnError false
|
||||||
|
}
|
||||||
|
|
||||||
|
aaptOptions {
|
||||||
|
noCompress = **BUILTIN_NOCOMPRESS** + unityStreamingAssets.tokenize(', ')
|
||||||
|
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
|
||||||
|
}**PACKAGING_OPTIONS**
|
||||||
|
}
|
||||||
|
**IL_CPP_BUILD_SETUP**
|
||||||
|
**SOURCE_BUILD_SETUP**
|
||||||
|
**EXTERNAL_SOURCES**
|
@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 30f604014346448fdb69371709e4ae22
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
File diff suppressed because it is too large
Load Diff
@ -60,6 +60,26 @@ MonoBehaviour:
|
|||||||
company: Unity
|
company: Unity
|
||||||
priority: 0
|
priority: 0
|
||||||
required: 0
|
required: 0
|
||||||
|
--- !u!114 &-7220647188131764948
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: b213d3e3c7f3109449eb46a4c8ee42f0, type: 3}
|
||||||
|
m_Name: XrPerformanceSettingsFeature Android
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_enabled: 0
|
||||||
|
nameUi: XR Performance Settings
|
||||||
|
version: 1.0.0
|
||||||
|
featureIdInternal: com.unity.openxr.feature.extension.performance_settings
|
||||||
|
openxrExtensionStrings: XR_EXT_performance_settings
|
||||||
|
company: Unity
|
||||||
|
priority: 0
|
||||||
|
required: 0
|
||||||
--- !u!114 &-6398942697858794875
|
--- !u!114 &-6398942697858794875
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
@ -120,6 +140,26 @@ MonoBehaviour:
|
|||||||
company: Unity
|
company: Unity
|
||||||
priority: 0
|
priority: 0
|
||||||
required: 0
|
required: 0
|
||||||
|
--- !u!114 &-4689259162104193071
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: b213d3e3c7f3109449eb46a4c8ee42f0, type: 3}
|
||||||
|
m_Name: XrPerformanceSettingsFeature iPhone
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_enabled: 0
|
||||||
|
nameUi: XR Performance Settings
|
||||||
|
version: 1.0.0
|
||||||
|
featureIdInternal: com.unity.openxr.feature.extension.performance_settings
|
||||||
|
openxrExtensionStrings: XR_EXT_performance_settings
|
||||||
|
company: Unity
|
||||||
|
priority: 0
|
||||||
|
required: 0
|
||||||
--- !u!114 &-4138384353029275206
|
--- !u!114 &-4138384353029275206
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
@ -203,11 +243,41 @@ MonoBehaviour:
|
|||||||
- visibleName: Quest Pro
|
- visibleName: Quest Pro
|
||||||
manifestName: cambria
|
manifestName: cambria
|
||||||
enabled: 1
|
enabled: 1
|
||||||
|
- visibleName: Quest 3
|
||||||
|
manifestName: eureka
|
||||||
|
enabled: 1
|
||||||
|
- visibleName: Quest 3S
|
||||||
|
manifestName: quest3s
|
||||||
|
enabled: 1
|
||||||
forceRemoveInternetPermission: 1
|
forceRemoveInternetPermission: 1
|
||||||
symmetricProjection: 0
|
symmetricProjection: 0
|
||||||
|
foveatedRenderingApi: 0
|
||||||
systemSplashScreen: {fileID: 0}
|
systemSplashScreen: {fileID: 0}
|
||||||
|
optimizeBufferDiscards: 1
|
||||||
lateLatchingMode: 0
|
lateLatchingMode: 0
|
||||||
lateLatchingDebug: 0
|
lateLatchingDebug: 0
|
||||||
|
optimizeMultiviewRenderRegions: 0
|
||||||
|
spacewarpMotionVectorTextureFormat: 0
|
||||||
|
--- !u!114 &-1857883920823915878
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 2b7365b139f7aec43b23d26b7a48b5a6, type: 3}
|
||||||
|
m_Name: MetaQuestTouchPlusControllerProfile Standalone
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_enabled: 0
|
||||||
|
nameUi: Meta Quest Touch Plus Controller Profile
|
||||||
|
version: 0.0.1
|
||||||
|
featureIdInternal: com.unity.openxr.feature.input.metaquestplus
|
||||||
|
openxrExtensionStrings: XR_META_touch_controller_plus
|
||||||
|
company: Unity
|
||||||
|
priority: 0
|
||||||
|
required: 0
|
||||||
--- !u!114 &-1736171406142401071
|
--- !u!114 &-1736171406142401071
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
@ -301,9 +371,15 @@ MonoBehaviour:
|
|||||||
m_Script: {fileID: 11500000, guid: b5a1f07dc5afe854f9f12a4194aca3fb, type: 3}
|
m_Script: {fileID: 11500000, guid: b5a1f07dc5afe854f9f12a4194aca3fb, type: 3}
|
||||||
m_Name: iPhone
|
m_Name: iPhone
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
features: []
|
features:
|
||||||
|
- {fileID: -4689259162104193071}
|
||||||
m_renderMode: 1
|
m_renderMode: 1
|
||||||
|
m_autoColorSubmissionMode: 1
|
||||||
|
m_colorSubmissionModes:
|
||||||
|
m_List: 00000000
|
||||||
m_depthSubmissionMode: 0
|
m_depthSubmissionMode: 0
|
||||||
|
m_spacewarpMotionVectorTextureFormat: 0
|
||||||
|
m_optimizeBufferDiscards: 0
|
||||||
m_symmetricProjection: 0
|
m_symmetricProjection: 0
|
||||||
--- !u!114 &-369430212280189983
|
--- !u!114 &-369430212280189983
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
@ -769,11 +845,11 @@ MonoBehaviour:
|
|||||||
- {fileID: -359338846737858284}
|
- {fileID: -359338846737858284}
|
||||||
- {fileID: -6398942697858794875}
|
- {fileID: -6398942697858794875}
|
||||||
- {fileID: 5533280219843439536}
|
- {fileID: 5533280219843439536}
|
||||||
- {fileID: -1389020211371626869}
|
|
||||||
- {fileID: 5979867432962160989}
|
- {fileID: 5979867432962160989}
|
||||||
- {fileID: -4913026641127321290}
|
- {fileID: -4913026641127321290}
|
||||||
- {fileID: -8267305833683693900}
|
- {fileID: -8267305833683693900}
|
||||||
- {fileID: -8960643433864899106}
|
- {fileID: -8960643433864899106}
|
||||||
|
- {fileID: -1857883920823915878}
|
||||||
- {fileID: 2573962593641122060}
|
- {fileID: 2573962593641122060}
|
||||||
- {fileID: 3916031153604144883}
|
- {fileID: 3916031153604144883}
|
||||||
- {fileID: -8573038508977813188}
|
- {fileID: -8573038508977813188}
|
||||||
@ -782,9 +858,36 @@ MonoBehaviour:
|
|||||||
- {fileID: -4138384353029275206}
|
- {fileID: -4138384353029275206}
|
||||||
- {fileID: 2223178133080227939}
|
- {fileID: 2223178133080227939}
|
||||||
- {fileID: -258743785090255979}
|
- {fileID: -258743785090255979}
|
||||||
|
- {fileID: 4969233437108182577}
|
||||||
|
- {fileID: -1389020211371626869}
|
||||||
m_renderMode: 1
|
m_renderMode: 1
|
||||||
|
m_autoColorSubmissionMode: 1
|
||||||
|
m_colorSubmissionModes:
|
||||||
|
m_List: 00000000
|
||||||
m_depthSubmissionMode: 0
|
m_depthSubmissionMode: 0
|
||||||
|
m_spacewarpMotionVectorTextureFormat: 0
|
||||||
|
m_optimizeBufferDiscards: 0
|
||||||
m_symmetricProjection: 0
|
m_symmetricProjection: 0
|
||||||
|
--- !u!114 &4969233437108182577
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: b213d3e3c7f3109449eb46a4c8ee42f0, type: 3}
|
||||||
|
m_Name: XrPerformanceSettingsFeature Standalone
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_enabled: 0
|
||||||
|
nameUi: XR Performance Settings
|
||||||
|
version: 1.0.0
|
||||||
|
featureIdInternal: com.unity.openxr.feature.extension.performance_settings
|
||||||
|
openxrExtensionStrings: XR_EXT_performance_settings
|
||||||
|
company: Unity
|
||||||
|
priority: 0
|
||||||
|
required: 0
|
||||||
--- !u!114 &5472988246120479344
|
--- !u!114 &5472988246120479344
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
@ -903,10 +1006,10 @@ MonoBehaviour:
|
|||||||
- {fileID: 1790095763968218304}
|
- {fileID: 1790095763968218304}
|
||||||
- {fileID: 2137140009481922398}
|
- {fileID: 2137140009481922398}
|
||||||
- {fileID: 704542877222552917}
|
- {fileID: 704542877222552917}
|
||||||
- {fileID: 1917946171623946038}
|
|
||||||
- {fileID: 870792567685352337}
|
- {fileID: 870792567685352337}
|
||||||
- {fileID: 5472988246120479344}
|
- {fileID: 5472988246120479344}
|
||||||
- {fileID: -2976327503824836234}
|
- {fileID: -2976327503824836234}
|
||||||
|
- {fileID: 7881892622198107152}
|
||||||
- {fileID: 4713676762930088383}
|
- {fileID: 4713676762930088383}
|
||||||
- {fileID: 1334536282075740144}
|
- {fileID: 1334536282075740144}
|
||||||
- {fileID: 3755411275038678371}
|
- {fileID: 3755411275038678371}
|
||||||
@ -914,8 +1017,15 @@ MonoBehaviour:
|
|||||||
- {fileID: 6225668294878403501}
|
- {fileID: 6225668294878403501}
|
||||||
- {fileID: 1903574991577898264}
|
- {fileID: 1903574991577898264}
|
||||||
- {fileID: 8320597358863670871}
|
- {fileID: 8320597358863670871}
|
||||||
|
- {fileID: -7220647188131764948}
|
||||||
|
- {fileID: 1917946171623946038}
|
||||||
m_renderMode: 1
|
m_renderMode: 1
|
||||||
|
m_autoColorSubmissionMode: 1
|
||||||
|
m_colorSubmissionModes:
|
||||||
|
m_List: 00000000
|
||||||
m_depthSubmissionMode: 0
|
m_depthSubmissionMode: 0
|
||||||
|
m_spacewarpMotionVectorTextureFormat: 0
|
||||||
|
m_optimizeBufferDiscards: 0
|
||||||
m_symmetricProjection: 0
|
m_symmetricProjection: 0
|
||||||
--- !u!114 &7795885686008422532
|
--- !u!114 &7795885686008422532
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
@ -939,6 +1049,26 @@ MonoBehaviour:
|
|||||||
required: 0
|
required: 0
|
||||||
targetQuest: 1
|
targetQuest: 1
|
||||||
targetQuest2: 1
|
targetQuest2: 1
|
||||||
|
--- !u!114 &7881892622198107152
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 0}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 2b7365b139f7aec43b23d26b7a48b5a6, type: 3}
|
||||||
|
m_Name: MetaQuestTouchPlusControllerProfile Android
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_enabled: 0
|
||||||
|
nameUi: Meta Quest Touch Plus Controller Profile
|
||||||
|
version: 0.0.1
|
||||||
|
featureIdInternal: com.unity.openxr.feature.input.metaquestplus
|
||||||
|
openxrExtensionStrings: XR_META_touch_controller_plus
|
||||||
|
company: Unity
|
||||||
|
priority: 0
|
||||||
|
required: 0
|
||||||
--- !u!114 &8320597358863670871
|
--- !u!114 &8320597358863670871
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
@ -1,21 +1,21 @@
|
|||||||
{
|
{
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.2d.sprite": "1.0.0",
|
"com.unity.2d.sprite": "1.0.0",
|
||||||
"com.unity.collab-proxy": "2.2.0",
|
"com.unity.collab-proxy": "2.7.1",
|
||||||
"com.unity.feature.development": "1.0.1",
|
"com.unity.feature.development": "1.0.1",
|
||||||
"com.unity.feature.vr": "1.0.0",
|
"com.unity.feature.vr": "1.0.0",
|
||||||
"com.unity.formats.fbx": "4.2.1",
|
"com.unity.formats.fbx": "4.2.1",
|
||||||
"com.unity.learn.iet-framework": "3.1.3",
|
"com.unity.learn.iet-framework": "3.1.3",
|
||||||
"com.unity.memoryprofiler": "1.1.3",
|
"com.unity.memoryprofiler": "1.1.6",
|
||||||
"com.unity.nuget.newtonsoft-json": "3.2.1",
|
"com.unity.nuget.newtonsoft-json": "3.2.1",
|
||||||
"com.unity.render-pipelines.universal": "14.0.9",
|
"com.unity.render-pipelines.universal": "14.0.12",
|
||||||
"com.unity.textmeshpro": "3.0.9",
|
"com.unity.textmeshpro": "3.0.9",
|
||||||
"com.unity.timeline": "1.7.6",
|
"com.unity.timeline": "1.7.7",
|
||||||
"com.unity.visualscripting": "1.9.1",
|
"com.unity.visualscripting": "1.9.4",
|
||||||
"com.unity.xr.hands": "1.3.0",
|
"com.unity.xr.hands": "1.4.0",
|
||||||
"com.unity.xr.interaction.toolkit": "2.5.2",
|
"com.unity.xr.interaction.toolkit": "2.6.4",
|
||||||
"com.unity.xr.management": "4.4.0",
|
"com.unity.xr.management": "4.4.0",
|
||||||
"com.unity.xr.openxr": "1.9.1",
|
"com.unity.xr.openxr": "1.14.3",
|
||||||
"com.unity.xr.picoxr": "file:../../LocalPackages/PICO_Unity_Integration_SDK_3.1.0",
|
"com.unity.xr.picoxr": "file:../../LocalPackages/PICO_Unity_Integration_SDK_3.1.0",
|
||||||
"nyc.scatter.depthkit.avpro": "file:../../LocalPackages/depthkit.avpro",
|
"nyc.scatter.depthkit.avpro": "file:../../LocalPackages/depthkit.avpro",
|
||||||
"nyc.scatter.depthkit.core": "file:../../LocalPackages/depthkit.core",
|
"nyc.scatter.depthkit.core": "file:../../LocalPackages/depthkit.core",
|
||||||
|
@ -14,16 +14,17 @@
|
|||||||
"dependencies": {}
|
"dependencies": {}
|
||||||
},
|
},
|
||||||
"com.unity.burst": {
|
"com.unity.burst": {
|
||||||
"version": "1.8.11",
|
"version": "1.8.21",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.mathematics": "1.2.1"
|
"com.unity.mathematics": "1.2.1",
|
||||||
|
"com.unity.modules.jsonserialize": "1.0.0"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.collab-proxy": {
|
"com.unity.collab-proxy": {
|
||||||
"version": "2.2.0",
|
"version": "2.7.1",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
@ -59,12 +60,12 @@
|
|||||||
"source": "builtin",
|
"source": "builtin",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.ide.visualstudio": "2.0.22",
|
"com.unity.ide.visualstudio": "2.0.22",
|
||||||
"com.unity.ide.rider": "3.0.27",
|
"com.unity.ide.rider": "3.0.36",
|
||||||
"com.unity.ide.vscode": "1.2.5",
|
"com.unity.ide.vscode": "1.2.5",
|
||||||
"com.unity.editorcoroutines": "1.0.0",
|
"com.unity.editorcoroutines": "1.0.0",
|
||||||
"com.unity.performance.profile-analyzer": "1.2.2",
|
"com.unity.performance.profile-analyzer": "1.2.3",
|
||||||
"com.unity.test-framework": "1.1.33",
|
"com.unity.test-framework": "1.1.33",
|
||||||
"com.unity.testtools.codecoverage": "1.2.4"
|
"com.unity.testtools.codecoverage": "1.2.6"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"com.unity.feature.vr": {
|
"com.unity.feature.vr": {
|
||||||
@ -72,8 +73,8 @@
|
|||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "builtin",
|
"source": "builtin",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.xr.oculus": "4.1.2",
|
"com.unity.xr.oculus": "4.5.1",
|
||||||
"com.unity.xr.openxr": "1.9.1"
|
"com.unity.xr.openxr": "1.14.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"com.unity.formats.fbx": {
|
"com.unity.formats.fbx": {
|
||||||
@ -87,7 +88,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.ide.rider": {
|
"com.unity.ide.rider": {
|
||||||
"version": "3.0.27",
|
"version": "3.0.36",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -112,7 +113,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.inputsystem": {
|
"com.unity.inputsystem": {
|
||||||
"version": "1.7.0",
|
"version": "1.14.0",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -138,7 +139,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.memoryprofiler": {
|
"com.unity.memoryprofiler": {
|
||||||
"version": "1.1.3",
|
"version": "1.1.6",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -158,7 +159,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.performance.profile-analyzer": {
|
"com.unity.performance.profile-analyzer": {
|
||||||
"version": "1.2.2",
|
"version": "1.2.3",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
@ -172,7 +173,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.render-pipelines.core": {
|
"com.unity.render-pipelines.core": {
|
||||||
"version": "14.0.9",
|
"version": "14.0.12",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "builtin",
|
"source": "builtin",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -183,23 +184,23 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"com.unity.render-pipelines.universal": {
|
"com.unity.render-pipelines.universal": {
|
||||||
"version": "14.0.9",
|
"version": "14.0.12",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "builtin",
|
"source": "builtin",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.mathematics": "1.2.1",
|
"com.unity.mathematics": "1.2.1",
|
||||||
"com.unity.burst": "1.8.9",
|
"com.unity.burst": "1.8.9",
|
||||||
"com.unity.render-pipelines.core": "14.0.9",
|
"com.unity.render-pipelines.core": "14.0.12",
|
||||||
"com.unity.shadergraph": "14.0.9",
|
"com.unity.shadergraph": "14.0.12",
|
||||||
"com.unity.render-pipelines.universal-config": "14.0.9"
|
"com.unity.render-pipelines.universal-config": "14.0.9"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"com.unity.render-pipelines.universal-config": {
|
"com.unity.render-pipelines.universal-config": {
|
||||||
"version": "14.0.9",
|
"version": "14.0.10",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "builtin",
|
"source": "builtin",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.render-pipelines.core": "14.0.9"
|
"com.unity.render-pipelines.core": "14.0.10"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"com.unity.searcher": {
|
"com.unity.searcher": {
|
||||||
@ -210,18 +211,18 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.settings-manager": {
|
"com.unity.settings-manager": {
|
||||||
"version": "2.0.1",
|
"version": "2.1.0",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.shadergraph": {
|
"com.unity.shadergraph": {
|
||||||
"version": "14.0.9",
|
"version": "14.0.12",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "builtin",
|
"source": "builtin",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.render-pipelines.core": "14.0.9",
|
"com.unity.render-pipelines.core": "14.0.12",
|
||||||
"com.unity.searcher": "4.9.2"
|
"com.unity.searcher": "4.9.2"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -237,7 +238,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.testtools.codecoverage": {
|
"com.unity.testtools.codecoverage": {
|
||||||
"version": "1.2.4",
|
"version": "1.2.6",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -256,7 +257,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.timeline": {
|
"com.unity.timeline": {
|
||||||
"version": "1.7.6",
|
"version": "1.7.7",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -277,7 +278,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"com.unity.visualscripting": {
|
"com.unity.visualscripting": {
|
||||||
"version": "1.9.1",
|
"version": "1.9.4",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -287,7 +288,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.xr.core-utils": {
|
"com.unity.xr.core-utils": {
|
||||||
"version": "2.3.0",
|
"version": "2.5.2",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -296,19 +297,20 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.xr.hands": {
|
"com.unity.xr.hands": {
|
||||||
"version": "1.3.0",
|
"version": "1.4.0",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.modules.xr": "1.0.0",
|
"com.unity.modules.xr": "1.0.0",
|
||||||
"com.unity.inputsystem": "1.3.0",
|
"com.unity.inputsystem": "1.3.0",
|
||||||
|
"com.unity.mathematics": "1.2.6",
|
||||||
"com.unity.xr.core-utils": "2.2.0",
|
"com.unity.xr.core-utils": "2.2.0",
|
||||||
"com.unity.xr.management": "4.0.1"
|
"com.unity.xr.management": "4.0.1"
|
||||||
},
|
},
|
||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.xr.interaction.toolkit": {
|
"com.unity.xr.interaction.toolkit": {
|
||||||
"version": "2.5.2",
|
"version": "2.6.4",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -324,7 +326,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.xr.legacyinputhelpers": {
|
"com.unity.xr.legacyinputhelpers": {
|
||||||
"version": "2.1.10",
|
"version": "2.1.12",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -346,7 +348,7 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.xr.oculus": {
|
"com.unity.xr.oculus": {
|
||||||
"version": "4.1.2",
|
"version": "4.5.1",
|
||||||
"depth": 1,
|
"depth": 1,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -355,12 +357,12 @@
|
|||||||
"url": "https://packages.unity.com"
|
"url": "https://packages.unity.com"
|
||||||
},
|
},
|
||||||
"com.unity.xr.openxr": {
|
"com.unity.xr.openxr": {
|
||||||
"version": "1.9.1",
|
"version": "1.14.3",
|
||||||
"depth": 0,
|
"depth": 0,
|
||||||
"source": "registry",
|
"source": "registry",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"com.unity.inputsystem": "1.6.3",
|
"com.unity.inputsystem": "1.6.3",
|
||||||
"com.unity.xr.core-utils": "2.1.1",
|
"com.unity.xr.core-utils": "2.3.0",
|
||||||
"com.unity.xr.management": "4.4.0",
|
"com.unity.xr.management": "4.4.0",
|
||||||
"com.unity.xr.legacyinputhelpers": "2.1.2"
|
"com.unity.xr.legacyinputhelpers": "2.1.2"
|
||||||
},
|
},
|
||||||
|
@ -81,6 +81,7 @@ PlayerSettings:
|
|||||||
androidMinimumWindowHeight: 300
|
androidMinimumWindowHeight: 300
|
||||||
androidFullscreenMode: 1
|
androidFullscreenMode: 1
|
||||||
androidAutoRotationBehavior: 1
|
androidAutoRotationBehavior: 1
|
||||||
|
androidPredictiveBackSupport: 1
|
||||||
defaultIsNativeResolution: 1
|
defaultIsNativeResolution: 1
|
||||||
macRetinaSupport: 1
|
macRetinaSupport: 1
|
||||||
runInBackground: 1
|
runInBackground: 1
|
||||||
@ -88,6 +89,7 @@ PlayerSettings:
|
|||||||
muteOtherAudioSources: 0
|
muteOtherAudioSources: 0
|
||||||
Prepare IOS For Recording: 0
|
Prepare IOS For Recording: 0
|
||||||
Force IOS Speakers When Recording: 0
|
Force IOS Speakers When Recording: 0
|
||||||
|
audioSpatialExperience: 0
|
||||||
deferSystemGesturesMode: 0
|
deferSystemGesturesMode: 0
|
||||||
hideHomeButton: 0
|
hideHomeButton: 0
|
||||||
submitAnalytics: 1
|
submitAnalytics: 1
|
||||||
@ -141,6 +143,8 @@ PlayerSettings:
|
|||||||
vulkanEnableLateAcquireNextImage: 0
|
vulkanEnableLateAcquireNextImage: 0
|
||||||
vulkanEnableCommandBufferRecycling: 1
|
vulkanEnableCommandBufferRecycling: 1
|
||||||
loadStoreDebugModeEnabled: 0
|
loadStoreDebugModeEnabled: 0
|
||||||
|
visionOSBundleVersion: 1.0
|
||||||
|
tvOSBundleVersion: 1.0
|
||||||
bundleVersion: 1.0
|
bundleVersion: 1.0
|
||||||
preloadedAssets:
|
preloadedAssets:
|
||||||
- {fileID: 0}
|
- {fileID: 0}
|
||||||
@ -194,8 +198,10 @@ PlayerSettings:
|
|||||||
strictShaderVariantMatching: 0
|
strictShaderVariantMatching: 0
|
||||||
VertexChannelCompressionMask: 4054
|
VertexChannelCompressionMask: 4054
|
||||||
iPhoneSdkVersion: 988
|
iPhoneSdkVersion: 988
|
||||||
|
iOSSimulatorArchitecture: 0
|
||||||
iOSTargetOSVersionString: 12.0
|
iOSTargetOSVersionString: 12.0
|
||||||
tvOSSdkVersion: 0
|
tvOSSdkVersion: 0
|
||||||
|
tvOSSimulatorArchitecture: 0
|
||||||
tvOSRequireExtendedGameController: 0
|
tvOSRequireExtendedGameController: 0
|
||||||
tvOSTargetOSVersionString: 12.0
|
tvOSTargetOSVersionString: 12.0
|
||||||
VisionOSSdkVersion: 0
|
VisionOSSdkVersion: 0
|
||||||
@ -242,6 +248,7 @@ PlayerSettings:
|
|||||||
iOSMetalForceHardShadows: 0
|
iOSMetalForceHardShadows: 0
|
||||||
metalEditorSupport: 1
|
metalEditorSupport: 1
|
||||||
metalAPIValidation: 1
|
metalAPIValidation: 1
|
||||||
|
metalCompileShaderBinary: 0
|
||||||
iOSRenderExtraFrameOnPause: 0
|
iOSRenderExtraFrameOnPause: 0
|
||||||
iosCopyPluginsCodeInsteadOfSymlink: 0
|
iosCopyPluginsCodeInsteadOfSymlink: 0
|
||||||
appleDeveloperTeamID:
|
appleDeveloperTeamID:
|
||||||
@ -264,7 +271,7 @@ PlayerSettings:
|
|||||||
useCustomMainGradleTemplate: 1
|
useCustomMainGradleTemplate: 1
|
||||||
useCustomLauncherGradleManifest: 1
|
useCustomLauncherGradleManifest: 1
|
||||||
useCustomBaseGradleTemplate: 0
|
useCustomBaseGradleTemplate: 0
|
||||||
useCustomGradlePropertiesTemplate: 0
|
useCustomGradlePropertiesTemplate: 1
|
||||||
useCustomGradleSettingsTemplate: 0
|
useCustomGradleSettingsTemplate: 0
|
||||||
useCustomProguardFile: 0
|
useCustomProguardFile: 0
|
||||||
AndroidTargetArchitectures: 2
|
AndroidTargetArchitectures: 2
|
||||||
@ -723,6 +730,7 @@ PlayerSettings:
|
|||||||
switchSocketBufferEfficiency: 4
|
switchSocketBufferEfficiency: 4
|
||||||
switchSocketInitializeEnabled: 1
|
switchSocketInitializeEnabled: 1
|
||||||
switchNetworkInterfaceManagerInitializeEnabled: 1
|
switchNetworkInterfaceManagerInitializeEnabled: 1
|
||||||
|
switchDisableHTCSPlayerConnection: 0
|
||||||
switchUseNewStyleFilepaths: 0
|
switchUseNewStyleFilepaths: 0
|
||||||
switchUseLegacyFmodPriorities: 1
|
switchUseLegacyFmodPriorities: 1
|
||||||
switchUseMicroSleepForYield: 1
|
switchUseMicroSleepForYield: 1
|
||||||
@ -887,6 +895,7 @@ PlayerSettings:
|
|||||||
metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0}
|
metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0}
|
||||||
metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1}
|
metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1}
|
||||||
metroSplashScreenUseBackgroundColor: 0
|
metroSplashScreenUseBackgroundColor: 0
|
||||||
|
syncCapabilities: 0
|
||||||
platformCapabilities: {}
|
platformCapabilities: {}
|
||||||
metroTargetDeviceFamilies: {}
|
metroTargetDeviceFamilies: {}
|
||||||
metroFTAName:
|
metroFTAName:
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
m_EditorVersion: 2022.3.17f1
|
m_EditorVersion: 2022.3.62f2
|
||||||
m_EditorVersionWithRevision: 2022.3.17f1 (4fc78088f837)
|
m_EditorVersionWithRevision: 2022.3.62f2 (7670c08855a9)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user