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

feat(config): tuanjie适配

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