Commit 646b43af authored by gaorui's avatar gaorui
Browse files

feat(config): tuanjie适配

parent f902e76b
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest <manifest
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unity3d.player"
xmlns:tools="http://schemas.android.com/tools"> xmlns:tools="http://schemas.android.com/tools">
<application> <application>
<!--Used when Application Entry is set to Activity, otherwise remove this activity block-->
<activity android:name="com.unity3d.player.UnityPlayerActivity" <activity android:name="com.unity3d.player.UnityPlayerActivity"
android:theme="@style/UnityThemeSelector"> android:theme="@style/TuanjieThemeSelector">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
<meta-data android:name="unityplayer.UnityActivity" android:value="true" /> <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
</activity> </activity>
<!--Used when Application Entry is set to GameActivity, otherwise remove this activity block-->
<activity android:name="com.unity3d.player.UnityPlayerGameActivity"
android:theme="@style/BaseUnityGameActivityTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
<meta-data android:name="android.app.lib_name" android:value="game" />
</activity>
</application> </application>
</manifest> </manifest>
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:installLocation="preferExternal"> xmlns:tools="http://schemas.android.com/tools" android:installLocation="preferExternal">
<supports-screens android:anyDensity="true" android:largeScreens="true"
android:normalScreens="true" android:smallScreens="true" android:xlargeScreens="true" /> <supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
...@@ -27,7 +32,7 @@ ...@@ -27,7 +32,7 @@
<application android:name="com.unity.game.Application" <application android:name="com.unity.game.Application"
android:theme="@style/UnityThemeSelector" android:theme="@style/TuanjieThemeSelector"
android:icon="@mipmap/app_icon" android:icon="@mipmap/app_icon"
android:label="@string/app_name" android:label="@string/app_name"
android:allowBackup="false" android:allowBackup="false"
......
plugins { plugins {
// If you are changing the Android Gradle Plugin version, make sure it is compatible with the Gradle version preinstalled with Unity // If you are changing the Android Gradle Plugin version, make sure it is compatible with the Gradle version preinstalled with Tuanjie
// See which Gradle version is preinstalled with Unity here https://docs.unity3d.com/Manual/android-gradle-overview.html // See which Gradle version is preinstalled with Tuanjie here https://docs.unity.cn/cn/2022.3/Manual/android-gradle-overview.html
// See official Gradle and Android Gradle Plugin compatibility table here https://developer.android.com/studio/releases/gradle-plugin#updating-gradle // See official Gradle and Android Gradle Plugin compatibility table here https://developer.android.com/studio/releases/gradle-plugin#updating-gradle
// To specify a custom Gradle version in Unity, go do "Preferences > External Tools", uncheck "Gradle Installed with Unity (recommended)" and specify a path to a custom Gradle version // To specify a custom Gradle version in Tuanjie, go do "Preferences > External Tools", uncheck "Gradle Installed with Tuanjie (recommended)" and specify a path to a custom Gradle version
id 'com.android.application' version '7.4.2' apply false id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false id 'com.android.library' version '7.4.2' apply false
**BUILD_SCRIPT_DEPS** **BUILD_SCRIPT_DEPS**
...@@ -10,4 +10,4 @@ plugins { ...@@ -10,4 +10,4 @@ plugins {
task clean(type: Delete) { task clean(type: Delete) {
delete rootProject.buildDir delete rootProject.buildDir
} }
\ No newline at end of file
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
dependencies { dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.hoolai.access.open:hoolai-core:1.3.1.1' implementation 'com.hoolai.access.open:hoolai-core:1.3.1.1'
implementation(name: "launcher-release", ext: "aar") implementation(name: "launcher-release", ext: "aar")
implementation project(':unityLibrary') implementation project(':tuanjieLibrary')
} }
android { android {
ndkPath "**NDKPATH**"
namespace "**NAMESPACE**" namespace "**NAMESPACE**"
ndkPath "**NDKPATH**"
compileSdkVersion **APIVERSION** compileSdkVersion **APIVERSION**
buildToolsVersion '**BUILDTOOLS**' buildToolsVersion '**BUILDTOOLS**'
...@@ -25,7 +24,6 @@ android { ...@@ -25,7 +24,6 @@ android {
minSdkVersion **MINSDKVERSION** minSdkVersion **MINSDKVERSION**
targetSdkVersion **TARGETSDKVERSION** targetSdkVersion **TARGETSDKVERSION**
applicationId '**APPLICATIONID**' applicationId '**APPLICATIONID**'
ndk { ndk {
abiFilters **ABIFILTERS** abiFilters **ABIFILTERS**
} }
...@@ -34,7 +32,7 @@ android { ...@@ -34,7 +32,7 @@ android {
} }
aaptOptions { aaptOptions {
noCompress =**BUILTIN_NOCOMPRESS**+unityStreamingAssets.tokenize(', ') noCompress = **BUILTIN_NOCOMPRESS** + tuanjieStreamingAssets.tokenize(', ')
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~" ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
}**SIGN** }**SIGN**
...@@ -45,18 +43,15 @@ android { ...@@ -45,18 +43,15 @@ android {
buildTypes { buildTypes {
debug { debug {
minifyEnabled **MINIFY_DEBUG** minifyEnabled **MINIFY_DEBUG**
proguardFiles getDefaultProguardFile('proguard-android.txt') **SIGNCONFIG** proguardFiles getDefaultProguardFile('proguard-android.txt')**SIGNCONFIG**
jniDebuggable true jniDebuggable true
} }
release { release {
minifyEnabled **MINIFY_RELEASE** minifyEnabled **MINIFY_RELEASE**
proguardFiles getDefaultProguardFile('proguard-android.txt') **SIGNCONFIG** proguardFiles getDefaultProguardFile('proguard-android.txt')**SIGNCONFIG**
} }
} }**PACKAGING_OPTIONS****PLAY_ASSET_PACKS****SPLITS**
**PACKAGING_OPTIONS** **BUILT_APK_LOCATION**
**PLAY_ASSET_PACKS****SPLITS**
**BUILT_APK_LOCATION**
bundle { bundle {
language { language {
enableSplit = false enableSplit = false
...@@ -67,12 +62,5 @@ android { ...@@ -67,12 +62,5 @@ android {
abi { abi {
enableSplit = true enableSplit = true
} }
texture {
enableSplit = true
}
} }
}**SPLITS_VERSION_CODE****LAUNCHER_SOURCE_BUILD_SETUP**
**GOOGLE_PLAY_DEPENDENCIES**
}
**SPLITS_VERSION_CODE**
**LAUNCHER_SOURCE_BUILD_SETUP**
\ No newline at end of file
...@@ -6,9 +6,9 @@ dependencies { ...@@ -6,9 +6,9 @@ dependencies {
**DEPS**} **DEPS**}
android { android {
ndkPath "**NDKPATH**"
namespace "com.unity3d.player" namespace "com.unity3d.player"
ndkPath "**NDKPATH**"
compileSdkVersion **APIVERSION** compileSdkVersion **APIVERSION**
buildToolsVersion '**BUILDTOOLS**' buildToolsVersion '**BUILDTOOLS**'
...@@ -25,8 +25,7 @@ android { ...@@ -25,8 +25,7 @@ android {
} }
versionCode **VERSIONCODE** versionCode **VERSIONCODE**
versionName '**VERSIONNAME**' versionName '**VERSIONNAME**'
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD** consumerProguardFiles 'proguard-tuanjie.txt'**USER_PROGUARD**
**DEFAULT_CONFIG_SETUP**
} }
lintOptions { lintOptions {
...@@ -34,7 +33,7 @@ android { ...@@ -34,7 +33,7 @@ android {
} }
aaptOptions { aaptOptions {
noCompress = **BUILTIN_NOCOMPRESS** + unityStreamingAssets.tokenize(', ') noCompress = **BUILTIN_NOCOMPRESS** + tuanjieStreamingAssets.tokenize(', ')
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~" ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
}**PACKAGING_OPTIONS** }**PACKAGING_OPTIONS**
} }
......
pluginManagement { pluginManagement {
repositories { repositories {
**ARTIFACTORYREPOSITORY** **ARTIFACTORYREPOSITORY**
// 默认的仓库
maven { maven {
url 'https://sdk.wdyxgames.com/nexus/repository/sdk-public/' url 'https://sdk.wdyxgames.com/nexus/repository/sdk-public/'
} }
...@@ -11,21 +10,20 @@ pluginManagement { ...@@ -11,21 +10,20 @@ pluginManagement {
} }
} }
include ':launcher', ':unityLibrary' include ':launcher', ':tuanjieLibrary'
**INCLUDES** **INCLUDES**
dependencyResolutionManagement { dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories { repositories {
**ARTIFACTORYREPOSITORY** **ARTIFACTORYREPOSITORY**
// 默认的仓库
maven { maven {
url 'https://sdk.wdyxgames.com/nexus/repository/sdk-public/' url 'https://sdk.wdyxgames.com/nexus/repository/sdk-public/'
} }
google() google()
mavenCentral() mavenCentral()
flatDir { flatDir {
dirs "${project(':unityLibrary').projectDir}/libs" dirs "${project(':tuanjieLibrary').projectDir}/libs"
} }
} }
} }
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
"com.unity.modules.director": "1.0.0", "com.unity.modules.director": "1.0.0",
"com.unity.modules.imageconversion": "1.0.0", "com.unity.modules.imageconversion": "1.0.0",
"com.unity.modules.imgui": "1.0.0", "com.unity.modules.imgui": "1.0.0",
"com.unity.modules.infinity": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0", "com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.particlesystem": "1.0.0", "com.unity.modules.particlesystem": "1.0.0",
"com.unity.modules.physics": "1.0.0", "com.unity.modules.physics": "1.0.0",
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
"dependencies": { "dependencies": {
"com.unity.ugui": "1.0.0" "com.unity.ugui": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.ai.navigation": { "com.unity.ai.navigation": {
"version": "1.1.6", "version": "1.1.6",
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
"dependencies": { "dependencies": {
"com.unity.modules.ai": "1.0.0" "com.unity.modules.ai": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.analytics": { "com.unity.analytics": {
"version": "3.8.1", "version": "3.8.1",
...@@ -41,28 +41,28 @@ ...@@ -41,28 +41,28 @@
"com.unity.services.analytics": "1.0.4", "com.unity.services.analytics": "1.0.4",
"com.unity.ugui": "1.0.0" "com.unity.ugui": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.collab-proxy": { "com.unity.collab-proxy": {
"version": "2.10.0", "version": "2.10.0",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.editorcoroutines": { "com.unity.editorcoroutines": {
"version": "1.0.0", "version": "1.0.0",
"depth": 1, "depth": 1,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.ext.nunit": { "com.unity.ext.nunit": {
"version": "1.0.6", "version": "1.0.6",
"depth": 1, "depth": 1,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.feature.development": { "com.unity.feature.development": {
"version": "1.0.1", "version": "1.0.1",
...@@ -70,10 +70,10 @@ ...@@ -70,10 +70,10 @@
"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.36", "com.unity.ide.rider": "3.0.34",
"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.3", "com.unity.performance.profile-analyzer": "1.2.2",
"com.unity.test-framework": "1.1.33", "com.unity.test-framework": "1.1.33",
"com.unity.testtools.codecoverage": "1.2.6" "com.unity.testtools.codecoverage": "1.2.6"
} }
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
"dependencies": { "dependencies": {
"com.unity.ext.nunit": "1.0.6" "com.unity.ext.nunit": "1.0.6"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.ide.visualstudio": { "com.unity.ide.visualstudio": {
"version": "2.0.22", "version": "2.0.22",
...@@ -94,28 +94,28 @@ ...@@ -94,28 +94,28 @@
"dependencies": { "dependencies": {
"com.unity.test-framework": "1.1.9" "com.unity.test-framework": "1.1.9"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.ide.vscode": { "com.unity.ide.vscode": {
"version": "1.2.5", "version": "1.2.5",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.nuget.newtonsoft-json": { "com.unity.nuget.newtonsoft-json": {
"version": "3.2.1", "version": "3.2.1",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.performance.profile-analyzer": { "com.unity.performance.profile-analyzer": {
"version": "1.2.3", "version": "1.2.2",
"depth": 1, "depth": 1,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.purchasing": { "com.unity.purchasing": {
"version": "4.11.0", "version": "4.11.0",
...@@ -128,36 +128,36 @@ ...@@ -128,36 +128,36 @@
"com.unity.modules.androidjni": "1.0.0", "com.unity.modules.androidjni": "1.0.0",
"com.unity.services.core": "1.8.2" "com.unity.services.core": "1.8.2"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.services.analytics": { "com.unity.services.analytics": {
"version": "6.0.3", "version": "6.0.2",
"depth": 1, "depth": 1,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
"com.unity.ugui": "1.0.0", "com.unity.ugui": "1.0.0",
"com.unity.services.core": "1.12.4", "com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0" "com.unity.services.core": "1.12.4"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.services.core": { "com.unity.services.core": {
"version": "1.14.0", "version": "1.14.0",
"depth": 1, "depth": 1,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
"com.unity.modules.androidjni": "1.0.0", "com.unity.modules.unitywebrequest": "1.0.0",
"com.unity.nuget.newtonsoft-json": "3.2.1", "com.unity.nuget.newtonsoft-json": "3.2.1",
"com.unity.modules.unitywebrequest": "1.0.0" "com.unity.modules.androidjni": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.settings-manager": { "com.unity.settings-manager": {
"version": "2.1.0", "version": "2.0.1",
"depth": 2, "depth": 2,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.test-framework": { "com.unity.test-framework": {
"version": "1.1.33", "version": "1.1.33",
...@@ -168,7 +168,7 @@ ...@@ -168,7 +168,7 @@
"com.unity.modules.imgui": "1.0.0", "com.unity.modules.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0" "com.unity.modules.jsonserialize": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.testtools.codecoverage": { "com.unity.testtools.codecoverage": {
"version": "1.2.6", "version": "1.2.6",
...@@ -178,7 +178,7 @@ ...@@ -178,7 +178,7 @@
"com.unity.test-framework": "1.0.16", "com.unity.test-framework": "1.0.16",
"com.unity.settings-manager": "1.0.1" "com.unity.settings-manager": "1.0.1"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.textmeshpro": { "com.unity.textmeshpro": {
"version": "3.0.7", "version": "3.0.7",
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
"dependencies": { "dependencies": {
"com.unity.ugui": "1.0.0" "com.unity.ugui": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.timeline": { "com.unity.timeline": {
"version": "1.7.7", "version": "1.7.7",
...@@ -199,7 +199,7 @@ ...@@ -199,7 +199,7 @@
"com.unity.modules.animation": "1.0.0", "com.unity.modules.animation": "1.0.0",
"com.unity.modules.particlesystem": "1.0.0" "com.unity.modules.particlesystem": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.ugui": { "com.unity.ugui": {
"version": "1.0.0", "version": "1.0.0",
...@@ -218,7 +218,7 @@ ...@@ -218,7 +218,7 @@
"com.unity.ugui": "1.0.0", "com.unity.ugui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0" "com.unity.modules.jsonserialize": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.xr.legacyinputhelpers": { "com.unity.xr.legacyinputhelpers": {
"version": "2.1.12", "version": "2.1.12",
...@@ -228,7 +228,7 @@ ...@@ -228,7 +228,7 @@
"com.unity.modules.vr": "1.0.0", "com.unity.modules.vr": "1.0.0",
"com.unity.modules.xr": "1.0.0" "com.unity.modules.xr": "1.0.0"
}, },
"url": "https://packages.unity.cn" "url": "https://packages.tuanjie.cn"
}, },
"com.unity.modules.ai": { "com.unity.modules.ai": {
"version": "1.0.0", "version": "1.0.0",
...@@ -252,7 +252,10 @@ ...@@ -252,7 +252,10 @@
"version": "1.0.0", "version": "1.0.0",
"depth": 0, "depth": 0,
"source": "builtin", "source": "builtin",
"dependencies": {} "dependencies": {
"com.unity.modules.audio": "1.0.0",
"com.unity.modules.animation": "1.0.0"
}
}, },
"com.unity.modules.audio": { "com.unity.modules.audio": {
"version": "1.0.0", "version": "1.0.0",
...@@ -289,6 +292,12 @@ ...@@ -289,6 +292,12 @@
"source": "builtin", "source": "builtin",
"dependencies": {} "dependencies": {}
}, },
"com.unity.modules.infinity": {
"version": "1.0.0",
"depth": 0,
"source": "builtin",
"dependencies": {}
},
"com.unity.modules.jsonserialize": { "com.unity.modules.jsonserialize": {
"version": "1.0.0", "version": "1.0.0",
"depth": 0, "depth": 0,
......
%YAML 1.1 %YAML 1.1
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:yousandi.cn,2023:
--- !u!114 &1 --- !u!114 &1
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 61 m_ObjectHideFlags: 61
...@@ -21,7 +21,7 @@ MonoBehaviour: ...@@ -21,7 +21,7 @@ MonoBehaviour:
m_Registries: m_Registries:
- m_Id: main - m_Id: main
m_Name: m_Name:
m_Url: https://packages.unity.cn m_Url: https://packages.tuanjie.cn
m_Scopes: [] m_Scopes: []
m_IsDefault: 1 m_IsDefault: 1
m_Capabilities: 7 m_Capabilities: 7
...@@ -31,6 +31,6 @@ MonoBehaviour: ...@@ -31,6 +31,6 @@ MonoBehaviour:
m_RegistryInfoDraft: m_RegistryInfoDraft:
m_Modified: 0 m_Modified: 0
m_ErrorMessage: m_ErrorMessage:
m_UserModificationsInstanceId: -836 m_UserModificationsInstanceId: -884
m_OriginalInstanceId: -838 m_OriginalInstanceId: -886
m_LoadAssets: 0 m_LoadAssets: 0
%YAML 1.1 %YAML 1.1
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:yousandi.cn,2023:
--- !u!129 &1 --- !u!129 &1
PlayerSettings: PlayerSettings:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
serializedVersion: 26 serializedVersion: 26
productGUID: c9b8160892df04a628278b52a3b81799 productGUID: c9b8160892df04a628278b52a3b81799
AndroidProfiler: 0 AndroidProfiler: 0
hmiUseInternalProfiler: 0
AndroidFilterTouchesWhenObscured: 0 AndroidFilterTouchesWhenObscured: 0
AndroidEnableSustainedPerformanceMode: 0 AndroidEnableSustainedPerformanceMode: 0
defaultScreenOrientation: 4 defaultScreenOrientation: 4
...@@ -41,6 +42,7 @@ PlayerSettings: ...@@ -41,6 +42,7 @@ PlayerSettings:
height: 1 height: 1
m_SplashScreenLogos: [] m_SplashScreenLogos: []
m_VirtualRealitySplashScreen: {fileID: 0} m_VirtualRealitySplashScreen: {fileID: 0}
integrityHash:
m_HolographicTrackingLossScreen: {fileID: 0} m_HolographicTrackingLossScreen: {fileID: 0}
defaultScreenWidth: 1920 defaultScreenWidth: 1920
defaultScreenHeight: 1080 defaultScreenHeight: 1080
...@@ -69,6 +71,8 @@ PlayerSettings: ...@@ -69,6 +71,8 @@ PlayerSettings:
androidStartInFullscreen: 1 androidStartInFullscreen: 1
androidRenderOutsideSafeArea: 1 androidRenderOutsideSafeArea: 1
androidUseSwappy: 1 androidUseSwappy: 1
androidDisableUnityAndroidVSync: 0
useSRGBBackBuffer: 1
androidBlitType: 0 androidBlitType: 0
androidResizableWindow: 0 androidResizableWindow: 0
androidDefaultWindowWidth: 1920 androidDefaultWindowWidth: 1920
...@@ -77,7 +81,8 @@ PlayerSettings: ...@@ -77,7 +81,8 @@ PlayerSettings:
androidMinimumWindowHeight: 300 androidMinimumWindowHeight: 300
androidFullscreenMode: 1 androidFullscreenMode: 1
androidAutoRotationBehavior: 1 androidAutoRotationBehavior: 1
androidPredictiveBackSupport: 1 androidUrasMode: 0
androidEnableSensors: 0
defaultIsNativeResolution: 1 defaultIsNativeResolution: 1
macRetinaSupport: 1 macRetinaSupport: 1
runInBackground: 1 runInBackground: 1
...@@ -90,14 +95,24 @@ PlayerSettings: ...@@ -90,14 +95,24 @@ PlayerSettings:
hideHomeButton: 0 hideHomeButton: 0
submitAnalytics: 1 submitAnalytics: 1
usePlayerLog: 1 usePlayerLog: 1
autoStreaming: 0
useFontStreaming: 0
cacheASTextureAB: 0
maxCacheSize: 0
maxConcurrentLoad: 0
autoStreamingId:
instantGameAppId:
dedicatedServerOptimizations: 0 dedicatedServerOptimizations: 0
bakeCollisionMeshes: 0 bakeCollisionMeshes: 0
forceSingleInstance: 0 forceSingleInstance: 0
useFlipModelSwapchain: 1 useFlipModelSwapchain: 1
resizableWindow: 0 resizableWindow: 0
useMacAppStoreValidation: 0 useMacAppStoreValidation: 0
wglDisableFBODepthStencil: 0
macAppStoreCategory: public.app-category.games macAppStoreCategory: public.app-category.games
gpuSkinning: 1 gpuSkinning: 1
gpuSkinningTransformFeedback: 0
vertexShaderSkinning: 0
xboxPIXTextureCapture: 0 xboxPIXTextureCapture: 0
xboxEnableAvatar: 0 xboxEnableAvatar: 0
xboxEnableKinect: 0 xboxEnableKinect: 0
...@@ -131,6 +146,17 @@ PlayerSettings: ...@@ -131,6 +146,17 @@ PlayerSettings:
switchNVNMaxPublicSamplerIDCount: 0 switchNVNMaxPublicSamplerIDCount: 0
switchNVNGraphicsFirmwareMemory: 32 switchNVNGraphicsFirmwareMemory: 32
switchMaxWorkerMultiple: 8 switchMaxWorkerMultiple: 8
openHarmonyStartInFullscreen: 1
openHarmonyRenderOutsideSafeArea: 1
openHarmonyResizableWindow: 0
openHarmonyEnableLowLatencyAudio: 1
openHarmonyFullscreenMode: 1
openHarmonyAutoRotationBehavior: 1
openHarmonyBlitType: 0
openHarmonyDefaultWindowWidth: 1920
openHarmonyDefaultWindowHeight: 1080
openHarmonyMinimumWindowWidth: 400
openHarmonyMinimumWindowHeight: 300
stadiaPresentMode: 0 stadiaPresentMode: 0
stadiaTargetFramerate: 0 stadiaTargetFramerate: 0
vulkanNumSwapchainBuffers: 3 vulkanNumSwapchainBuffers: 3
...@@ -163,7 +189,7 @@ PlayerSettings: ...@@ -163,7 +189,7 @@ PlayerSettings:
androidSupportedAspectRatio: 1 androidSupportedAspectRatio: 1
androidMaxAspectRatio: 2.1 androidMaxAspectRatio: 2.1
applicationIdentifier: applicationIdentifier:
Android: com.hoolai.unity.demo Android: com.hoolai.tuanjie.demo
iPhone: com.hoolai.demo.unity iPhone: com.hoolai.demo.unity
buildNumber: buildNumber:
Standalone: 0 Standalone: 0
...@@ -253,6 +279,11 @@ PlayerSettings: ...@@ -253,6 +279,11 @@ PlayerSettings:
iOSAutomaticallyDetectAndAddCapabilities: 1 iOSAutomaticallyDetectAndAddCapabilities: 1
appleEnableProMotion: 0 appleEnableProMotion: 0
shaderPrecisionModel: 0 shaderPrecisionModel: 0
optimizeInstantGameEnabled: 1
useMobileShaderForInstantGame: 1
limitMaxVisibleLights16: 1
declareTempsInMain: 1
declareImmCBAsConst: 1
clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea
templatePackageId: com.unity.template.3d@8.1.3 templatePackageId: com.unity.template.3d@8.1.3
templateDefaultScene: Assets/Scenes/SampleScene.unity templateDefaultScene: Assets/Scenes/SampleScene.unity
...@@ -268,7 +299,7 @@ PlayerSettings: ...@@ -268,7 +299,7 @@ PlayerSettings:
AndroidTargetDevices: 0 AndroidTargetDevices: 0
AndroidSplashScreenScale: 0 AndroidSplashScreenScale: 0
androidSplashScreen: {fileID: 0} androidSplashScreen: {fileID: 0}
AndroidKeystoreName: '{dedicated}: sds.keystore' AndroidKeystoreName: /Users/gr/sds.keystore
AndroidKeyaliasName: ft AndroidKeyaliasName: ft
AndroidEnableArmv9SecurityFeatures: 0 AndroidEnableArmv9SecurityFeatures: 0
AndroidBuildApkPerCpuArchitecture: 0 AndroidBuildApkPerCpuArchitecture: 0
...@@ -881,8 +912,10 @@ PlayerSettings: ...@@ -881,8 +912,10 @@ PlayerSettings:
useDeterministicCompilation: 1 useDeterministicCompilation: 1
additionalIl2CppArgs: additionalIl2CppArgs:
scriptingRuntimeVersion: 1 scriptingRuntimeVersion: 1
monoAOTCompilation: 0
gcIncremental: 1 gcIncremental: 1
gcWBarrierValidation: 0 gcWBarrierValidation: 0
gcAlgorithm: {}
apiCompatibilityLevelPerPlatform: {} apiCompatibilityLevelPerPlatform: {}
m_RenderingPath: 1 m_RenderingPath: 1
m_MobileRenderingPath: 1 m_MobileRenderingPath: 1
...@@ -958,9 +991,62 @@ PlayerSettings: ...@@ -958,9 +991,62 @@ PlayerSettings:
hmiPlayerDataPath: hmiPlayerDataPath:
hmiForceSRGBBlit: 1 hmiForceSRGBBlit: 1
embeddedLinuxEnableGamepadInput: 1 embeddedLinuxEnableGamepadInput: 1
hmiLogStartupTiming: 0 logStartupTiming: 0
hmiCpuConfiguration: hmiCpuConfiguration:
openHarmonySplashScreen: {fileID: 0}
openHarmonySplashScreenScale: 0
OpenHarmonyTargetArchitectures: 2
openHarmonyClientID:
openHarmonyAppID:
openHarmonyDeviceTypes: 7
openHarmonySupportWindowModes: 1
OpenHarmonyBundleVersionCode: 1
forceOpenHarmonyInternetPermission: 0
forceOpenHarmonySDCardPermission: 0
openHarmonyUseLowAccuracyLocation: 0
openHarmonyPredefinedPermissions: []
openHarmonyUseTuanjieLogo: 1
openHarmonyLaunchImage: {fileID: 0}
openHarmonyLaunchBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
OpenHarmonyKeystoreName:
OpenHarmonyKeyaliasName:
OpenHarmonyProfile:
OpenHarmonyCertificate:
OpenHarmonyUseCustomKeystore: 0
OpenHarmonyUseCustomModuleJsonFive: 0
OpenHarmonyUseCustomTuanjiePlayerAbility: 0
apiCompatibilityLevel: 6 apiCompatibilityLevel: 6
weixinMiniGameMemorySize: 32
weixinMiniGameExceptionSupport: 1
weixinMiniGameExceptionOnlyEnableForUserCodes: 0
weixinMiniGameNameFilesAsHashes: 0
weixinMiniGameShowDiagnostics: 0
weixinMiniGameDataCaching: 1
weixinMiniGameDebugSymbols: 0
weixinMiniGameEmscriptenArgs:
weixinMiniGameModulesDirectory:
weixinMiniGameTemplate: APPLICATION:Default
weixinMiniGameAnalyzeBuildSize: 0
weixinMiniGameUseEmbeddedResources: 0
weixinMiniGameCompressionFormat: 0
weixinMiniGameWasmArithmeticExceptions: 0
weixinMiniGameLinkerTarget: 1
weixinMiniGameThreadsSupport: 0
weixinMiniGameDecompressionFallback: 0
weixinMiniGameInitialMemorySize: 32
weixinMiniGameMaximumMemorySize: 2048
weixinMiniGameMemoryGrowthMode: 2
weixinMiniGameMemoryLinearGrowthStep: 16
weixinMiniGameMemoryGeometricGrowthStep: 0.2
weixinMiniGameMemoryGeometricGrowthCap: 96
weixinMiniGamePowerPreference: 2
weixinMiniGameSIMDSupport: 0
weixinMiniGameUseSlimMetaFileFormat: 1
weixinMiniGamePhysicsEngine: 0
weixinMiniGameInjectStrippedMethodLogger: 0
weixinMiniGameEnableDotNetWasmExceptionHandling: 1
weixinMiniGamePreserveEventDelegate: 0
activeSubplatform: 1
activeInputHandler: 0 activeInputHandler: 0
windowsGamepadBackendHint: 0 windowsGamepadBackendHint: 0
cloudProjectId: cloudProjectId:
...@@ -971,6 +1057,11 @@ PlayerSettings: ...@@ -971,6 +1057,11 @@ PlayerSettings:
cloudEnabled: 0 cloudEnabled: 0
legacyClampBlendShapeWeights: 0 legacyClampBlendShapeWeights: 0
hmiLoadingImage: {fileID: 0} hmiLoadingImage: {fileID: 0}
qnxEGLPriority: 0
embeddedLinuxEGLPriority: 0
androidEGLPriority: 0
platformRequiresReadableAssets: 0 platformRequiresReadableAssets: 0
virtualTexturingSupportEnabled: 0 virtualTexturingSupportEnabled: 0
packClustersForPlayer: 0
insecureHttpOption: 2 insecureHttpOption: 2
useStringInternPool: 0
%YAML 1.1 %YAML 1.1
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:yousandi.cn,2023:
--- !u!310 &1 --- !u!310 &1
UnityConnectSettings: UnityConnectSettings:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
serializedVersion: 1 serializedVersion: 1
m_Enabled: 1 m_Enabled: 1
m_TestMode: 0 m_TestMode: 0
m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events m_EventOldUrl: https://api.uca.cloud.tuanjie.cn/v1/events
m_EventUrl: https://cdp.cloud.unity3d.com/v1/events m_EventUrl: https://cdp.tuanjie.cn/v1/events
m_ConfigUrl: https://config.uca.cloud.unity3d.com m_ConfigUrl: https://config.uca.cloud.tuanjie.cn
m_DashboardUrl: https://dashboard.unity3d.com m_DashboardUrl: https://dashboard.tuanjie.cn
m_CNEventUrl: https://cdp.cloud.unity.cn/v1/events
m_CNConfigUrl: https://cdp.cloud.unity.cn/config
m_TestInitMode: 0 m_TestInitMode: 0
CrashReportingSettings: CrashReportingSettings:
m_EventUrl: https://perf-events.cloud.unity.cn m_EventUrl: https://perf-events.cloud.unity.cn
......
%YAML 1.1 %YAML 1.1
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:yousandi.cn,2023:
--- !u!114 &1 --- !u!114 &1
MonoBehaviour:
m_ObjectHideFlags: 52
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: 12004, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_PixelRect:
serializedVersion: 2
x: 828
y: 232
width: 641
height: 602
m_ShowMode: 0
m_Title: Build Settings
m_RootView: {fileID: 4}
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
m_Maximized: 0
--- !u!114 &2
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -44,62 +20,11 @@ MonoBehaviour: ...@@ -44,62 +20,11 @@ MonoBehaviour:
height: 975 height: 975
m_ShowMode: 4 m_ShowMode: 4
m_Title: Project m_Title: Project
m_RootView: {fileID: 5} m_RootView: {fileID: 2}
m_MinSize: {x: 875, y: 300} m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000} m_MaxSize: {x: 10000, y: 10000}
m_Maximized: 1 m_Maximized: 1
--- !u!114 &3 --- !u!114 &2
MonoBehaviour:
m_ObjectHideFlags: 52
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: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: BuildPlayerWindow
m_EditorClassIdentifier:
m_Children: []
m_Position:
serializedVersion: 2
x: 0
y: 0
width: 641
height: 602
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
m_ActualView: {fileID: 15}
m_Panes:
- {fileID: 15}
m_Selected: 0
m_LastSelected: 0
--- !u!114 &4
MonoBehaviour:
m_ObjectHideFlags: 52
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: 12010, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_Children:
- {fileID: 3}
m_Position:
serializedVersion: 2
x: 0
y: 0
width: 641
height: 602
m_MinSize: {x: 640, y: 601}
m_MaxSize: {x: 4000, y: 4021}
vertical: 0
controlID: 159
draggingID: 0
--- !u!114 &5
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -112,9 +37,9 @@ MonoBehaviour: ...@@ -112,9 +37,9 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 6} - {fileID: 3}
- {fileID: 8} - {fileID: 5}
- {fileID: 7} - {fileID: 4}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
...@@ -127,7 +52,7 @@ MonoBehaviour: ...@@ -127,7 +52,7 @@ MonoBehaviour:
m_TopViewHeight: 30 m_TopViewHeight: 30
m_UseBottomView: 1 m_UseBottomView: 1
m_BottomViewHeight: 20 m_BottomViewHeight: 20
--- !u!114 &6 --- !u!114 &3
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -149,7 +74,7 @@ MonoBehaviour: ...@@ -149,7 +74,7 @@ MonoBehaviour:
m_MinSize: {x: 0, y: 0} m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0}
m_LastLoadedLayoutName: m_LastLoadedLayoutName:
--- !u!114 &7 --- !u!114 &4
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -170,7 +95,7 @@ MonoBehaviour: ...@@ -170,7 +95,7 @@ MonoBehaviour:
height: 20 height: 20
m_MinSize: {x: 0, y: 0} m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0}
--- !u!114 &8 --- !u!114 &5
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -183,8 +108,8 @@ MonoBehaviour: ...@@ -183,8 +108,8 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 9} - {fileID: 6}
- {fileID: 14} - {fileID: 11}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
...@@ -194,9 +119,9 @@ MonoBehaviour: ...@@ -194,9 +119,9 @@ MonoBehaviour:
m_MinSize: {x: 300, y: 100} m_MinSize: {x: 300, y: 100}
m_MaxSize: {x: 24288, y: 16192} m_MaxSize: {x: 24288, y: 16192}
vertical: 0 vertical: 0
controlID: 37 controlID: 106
draggingID: 0 draggingID: 0
--- !u!114 &9 --- !u!114 &6
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -209,8 +134,8 @@ MonoBehaviour: ...@@ -209,8 +134,8 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 7}
- {fileID: 10} - {fileID: 10}
- {fileID: 13}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
...@@ -220,9 +145,9 @@ MonoBehaviour: ...@@ -220,9 +145,9 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 100} m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 16192} m_MaxSize: {x: 16192, y: 16192}
vertical: 1 vertical: 1
controlID: 38 controlID: 107
draggingID: 0 draggingID: 0
--- !u!114 &10 --- !u!114 &7
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -235,8 +160,8 @@ MonoBehaviour: ...@@ -235,8 +160,8 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
m_Children: m_Children:
- {fileID: 11} - {fileID: 8}
- {fileID: 12} - {fileID: 9}
m_Position: m_Position:
serializedVersion: 2 serializedVersion: 2
x: 0 x: 0
...@@ -246,9 +171,9 @@ MonoBehaviour: ...@@ -246,9 +171,9 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 50} m_MinSize: {x: 200, y: 50}
m_MaxSize: {x: 16192, y: 8096} m_MaxSize: {x: 16192, y: 8096}
vertical: 0 vertical: 0
controlID: 39 controlID: 76
draggingID: 0 draggingID: 0
--- !u!114 &11 --- !u!114 &8
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -267,14 +192,14 @@ MonoBehaviour: ...@@ -267,14 +192,14 @@ MonoBehaviour:
y: 0 y: 0
width: 296 width: 296
height: 457.5 height: 457.5
m_MinSize: {x: 201, y: 221} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4001, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 17} m_ActualView: {fileID: 13}
m_Panes: m_Panes:
- {fileID: 17} - {fileID: 13}
m_Selected: 0 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 0
--- !u!114 &12 --- !u!114 &9
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -293,15 +218,15 @@ MonoBehaviour: ...@@ -293,15 +218,15 @@ MonoBehaviour:
y: 0 y: 0
width: 905 width: 905
height: 457.5 height: 457.5
m_MinSize: {x: 202, y: 221} m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4002, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 18} m_ActualView: {fileID: 14}
m_Panes: m_Panes:
- {fileID: 18} - {fileID: 14}
- {fileID: 16} - {fileID: 12}
m_Selected: 0 m_Selected: 0
m_LastSelected: 1 m_LastSelected: 1
--- !u!114 &13 --- !u!114 &10
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -322,14 +247,14 @@ MonoBehaviour: ...@@ -322,14 +247,14 @@ MonoBehaviour:
height: 467.5 height: 467.5
m_MinSize: {x: 231, y: 271} m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021} m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 19} m_ActualView: {fileID: 15}
m_Panes: m_Panes:
- {fileID: 19} - {fileID: 15}
- {fileID: 20} - {fileID: 16}
- {fileID: 21} - {fileID: 17}
m_Selected: 0 m_Selected: 0
m_LastSelected: 1 m_LastSelected: 1
--- !u!114 &14 --- !u!114 &11
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -348,70 +273,14 @@ MonoBehaviour: ...@@ -348,70 +273,14 @@ MonoBehaviour:
y: 0 y: 0
width: 509 width: 509
height: 925 height: 925
m_MinSize: {x: 276, y: 71} m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4001, y: 4021} m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 22} m_ActualView: {fileID: 18}
m_Panes: m_Panes:
- {fileID: 22} - {fileID: 18}
m_Selected: 0 m_Selected: 0
m_LastSelected: 0 m_LastSelected: 0
--- !u!114 &15 --- !u!114 &12
MonoBehaviour:
m_ObjectHideFlags: 52
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: 12043, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 640, y: 580}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Build Settings
m_Image: {fileID: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 828
y: 232
width: 641
height: 581
m_SerializedDataModeController:
m_DataMode: 0
m_PreferredDataMode: 0
m_SupportedDataModes:
isAutomatic: 1
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_OverlaysVisible: 1
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs:
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData: 0
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 0}
m_SearchString:
--- !u!114 &16
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -477,7 +346,7 @@ MonoBehaviour: ...@@ -477,7 +346,7 @@ MonoBehaviour:
screenIndex: 0 screenIndex: 0
networkReachability: 1 networkReachability: 1
systemLanguage: 10 systemLanguage: 10
--- !u!114 &17 --- !u!114 &13
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -516,7 +385,7 @@ MonoBehaviour: ...@@ -516,7 +385,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: m_SelectedIDs:
m_LastClickedID: 0 m_LastClickedID: 0
m_ExpandedIDs: 22fbffff m_ExpandedIDs: e6c3feff0cc5feff
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -532,7 +401,7 @@ MonoBehaviour: ...@@ -532,7 +401,7 @@ MonoBehaviour:
m_IsRenaming: 0 m_IsRenaming: 0
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 0 m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 11} m_ClientGUIView: {fileID: 8}
m_SearchString: m_SearchString:
m_ExpandedScenes: [] m_ExpandedScenes: []
m_CurrenRootInstanceID: 0 m_CurrenRootInstanceID: 0
...@@ -540,7 +409,7 @@ MonoBehaviour: ...@@ -540,7 +409,7 @@ MonoBehaviour:
m_IsLocked: 0 m_IsLocked: 0
m_CurrentSortingName: TransformSorting m_CurrentSortingName: TransformSorting
m_WindowGUID: 4c969a2b90040154d917609493e03593 m_WindowGUID: 4c969a2b90040154d917609493e03593
--- !u!114 &18 --- !u!114 &14
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1163,6 +1032,8 @@ MonoBehaviour: ...@@ -1163,6 +1032,8 @@ MonoBehaviour:
m_FarClip: 10000 m_FarClip: 10000
m_DynamicClip: 1 m_DynamicClip: 1
m_OcclusionCulling: 0 m_OcclusionCulling: 0
m_EnableGDRP: 1
m_BackfaceCulling: 0
m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226}
m_LastSceneViewOrtho: 0 m_LastSceneViewOrtho: 0
m_ReplacementShader: {fileID: 0} m_ReplacementShader: {fileID: 0}
...@@ -1170,7 +1041,7 @@ MonoBehaviour: ...@@ -1170,7 +1041,7 @@ MonoBehaviour:
m_SceneVisActive: 1 m_SceneVisActive: 1
m_LastLockedObject: {fileID: 0} m_LastLockedObject: {fileID: 0}
m_ViewIsLockedToObject: 0 m_ViewIsLockedToObject: 0
--- !u!114 &19 --- !u!114 &15
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1215,7 +1086,7 @@ MonoBehaviour: ...@@ -1215,7 +1086,7 @@ MonoBehaviour:
m_SkipHidden: 0 m_SkipHidden: 0
m_SearchArea: 1 m_SearchArea: 1
m_Folders: m_Folders:
- Assets/Scripts/sdk/core - Assets
m_Globs: [] m_Globs: []
m_OriginalText: m_OriginalText:
m_ImportLogFlags: 0 m_ImportLogFlags: 0
...@@ -1223,16 +1094,16 @@ MonoBehaviour: ...@@ -1223,16 +1094,16 @@ MonoBehaviour:
m_ViewMode: 1 m_ViewMode: 1
m_StartGridSize: 64 m_StartGridSize: 64
m_LastFolders: m_LastFolders:
- Assets/Scripts/sdk/core - Assets
m_LastFoldersGridSize: -1 m_LastFoldersGridSize: -1
m_LastProjectPath: /Users/gr/Documents/unity-work/UnityDemo m_LastProjectPath: /Users/gr/Documents/tuanjie_work/UnityDemo
m_LockTracker: m_LockTracker:
m_IsLocked: 0 m_IsLocked: 0
m_FolderTreeState: m_FolderTreeState:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: 2c670000 m_SelectedIDs: 7c430000
m_LastClickedID: 26412 m_LastClickedID: 17276
m_ExpandedIDs: 00000000106700001e67000028670000 m_ExpandedIDs: 000000007c430000ee43000000ca9a3bffffff7f
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -1248,7 +1119,7 @@ MonoBehaviour: ...@@ -1248,7 +1119,7 @@ MonoBehaviour:
m_IsRenaming: 0 m_IsRenaming: 0
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 13} m_ClientGUIView: {fileID: 0}
m_SearchString: m_SearchString:
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
...@@ -1260,7 +1131,7 @@ MonoBehaviour: ...@@ -1260,7 +1131,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0} scrollPos: {x: 0, y: 0}
m_SelectedIDs: m_SelectedIDs:
m_LastClickedID: 0 m_LastClickedID: 0
m_ExpandedIDs: 0000000010670000 m_ExpandedIDs:
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
m_Name: m_Name:
...@@ -1287,7 +1158,7 @@ MonoBehaviour: ...@@ -1287,7 +1158,7 @@ MonoBehaviour:
m_ListAreaState: m_ListAreaState:
m_SelectedInstanceIDs: m_SelectedInstanceIDs:
m_LastClickedInstanceID: 0 m_LastClickedInstanceID: 0
m_HadKeyboardFocusLastEvent: 1 m_HadKeyboardFocusLastEvent: 0
m_ExpandedInstanceIDs: c6230000b25c0000245a000000000000 m_ExpandedInstanceIDs: c6230000b25c0000245a000000000000
m_RenameOverlay: m_RenameOverlay:
m_UserAcceptedRename: 0 m_UserAcceptedRename: 0
...@@ -1304,7 +1175,7 @@ MonoBehaviour: ...@@ -1304,7 +1175,7 @@ MonoBehaviour:
m_IsRenaming: 0 m_IsRenaming: 0
m_OriginalEventType: 11 m_OriginalEventType: 11
m_IsRenamingFilename: 1 m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 13} m_ClientGUIView: {fileID: 10}
m_CreateAssetUtility: m_CreateAssetUtility:
m_EndAction: {fileID: 0} m_EndAction: {fileID: 0}
m_InstanceID: 0 m_InstanceID: 0
...@@ -1316,7 +1187,7 @@ MonoBehaviour: ...@@ -1316,7 +1187,7 @@ MonoBehaviour:
m_GridSize: 64 m_GridSize: 64
m_SkipHiddenPackages: 0 m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 207 m_DirectoriesAreaWidth: 207
--- !u!114 &20 --- !u!114 &16
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1350,7 +1221,7 @@ MonoBehaviour: ...@@ -1350,7 +1221,7 @@ MonoBehaviour:
m_LastAppliedPresetName: Default m_LastAppliedPresetName: Default
m_SaveData: [] m_SaveData: []
m_OverlaysVisible: 1 m_OverlaysVisible: 1
--- !u!114 &21 --- !u!114 &17
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
...@@ -1385,7 +1256,7 @@ MonoBehaviour: ...@@ -1385,7 +1256,7 @@ MonoBehaviour:
m_SaveData: [] m_SaveData: []
m_OverlaysVisible: 1 m_OverlaysVisible: 1
mForceToReOpen: 0 mForceToReOpen: 0
--- !u!114 &22 --- !u!114 &18
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 52 m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment