From a728ba36c229bb1d9429cdc9345f0ab1d7baac4b Mon Sep 17 00:00:00 2001 From: Ino Date: Thu, 28 Aug 2025 06:17:31 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B8=B0=EB=B3=B8=20=EC=84=B8=ED=8C=85=20?= =?UTF-8?q?=EB=B0=8F=20=EC=9C=A0=EB=8B=88=ED=8B=B0=20=EB=B2=84=EC=A0=84=20?= =?UTF-8?q?6=EC=9C=BC=EB=A1=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/GUI PRO Kit - Casual Game.meta | 8 -- .../Component Types/ES3Type_BoxCollider.cs | 2 +- .../ES3Type_CapsuleCollider.cs | 2 +- .../Component Types/ES3Type_MeshCollider.cs | 2 +- .../Component Types/ES3Type_Rigidbody.cs | 12 +-- .../Component Types/ES3Type_SphereCollider.cs | 2 +- .../Unity Types/ES3Type_PhysicMaterial.cs | 14 +-- .../GADTMediumTemplateView.xib.meta | 2 +- .../GADTSmallTemplateView.xib.meta | 2 +- Packages/manifest.json | 23 ++--- Packages/packages-lock.json | 88 ++++++++++++------- ProjectSettings/ProjectSettings.asset | 76 +++++++++------- ProjectSettings/ProjectVersion.txt | 4 +- 13 files changed, 134 insertions(+), 103 deletions(-) delete mode 100644 Assets/GUI PRO Kit - Casual Game.meta diff --git a/Assets/GUI PRO Kit - Casual Game.meta b/Assets/GUI PRO Kit - Casual Game.meta deleted file mode 100644 index 52bc611..0000000 --- a/Assets/GUI PRO Kit - Casual Game.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 620386859b802a14ba33575e8cb3276b -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_BoxCollider.cs b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_BoxCollider.cs index 8065032..fc6253d 100644 --- a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_BoxCollider.cs +++ b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_BoxCollider.cs @@ -49,7 +49,7 @@ namespace ES3Types instance.contactOffset = reader.Read(); break; case "material": - instance.sharedMaterial = reader.Read(); + instance.sharedMaterial = reader.Read(); break; default: reader.Skip(); diff --git a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_CapsuleCollider.cs b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_CapsuleCollider.cs index ad7d695..be4733e 100644 --- a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_CapsuleCollider.cs +++ b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_CapsuleCollider.cs @@ -57,7 +57,7 @@ namespace ES3Types instance.contactOffset = reader.Read(ES3Type_float.Instance); break; case "material": - instance.sharedMaterial = reader.Read(); + instance.sharedMaterial = reader.Read(); break; default: reader.Skip(); diff --git a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_MeshCollider.cs b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_MeshCollider.cs index dcbce53..917c439 100644 --- a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_MeshCollider.cs +++ b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_MeshCollider.cs @@ -58,7 +58,7 @@ namespace ES3Types instance.contactOffset = reader.Read(ES3Type_float.Instance); break; case "material": - instance.sharedMaterial = reader.Read(ES3Type_PhysicMaterial.Instance); + instance.sharedMaterial = reader.Read(ES3Type_PhysicMaterial.Instance); break; default: reader.Skip(); diff --git a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_Rigidbody.cs b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_Rigidbody.cs index 634b0e0..354bea7 100644 --- a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_Rigidbody.cs +++ b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_Rigidbody.cs @@ -16,10 +16,10 @@ namespace ES3Types { var instance = (UnityEngine.Rigidbody)obj; - writer.WriteProperty("velocity", instance.velocity, ES3Type_Vector3.Instance); + writer.WriteProperty("velocity", instance.linearVelocity, ES3Type_Vector3.Instance); writer.WriteProperty("angularVelocity", instance.angularVelocity, ES3Type_Vector3.Instance); - writer.WriteProperty("drag", instance.drag, ES3Type_float.Instance); - writer.WriteProperty("angularDrag", instance.angularDrag, ES3Type_float.Instance); + writer.WriteProperty("drag", instance.linearDamping, ES3Type_float.Instance); + writer.WriteProperty("angularDrag", instance.angularDamping, ES3Type_float.Instance); writer.WriteProperty("mass", instance.mass, ES3Type_float.Instance); writer.WriteProperty("useGravity", instance.useGravity, ES3Type_bool.Instance); writer.WriteProperty("maxDepenetrationVelocity", instance.maxDepenetrationVelocity, ES3Type_float.Instance); @@ -47,16 +47,16 @@ namespace ES3Types { case "velocity": - instance.velocity = reader.Read(ES3Type_Vector3.Instance); + instance.linearVelocity = reader.Read(ES3Type_Vector3.Instance); break; case "angularVelocity": instance.angularVelocity = reader.Read(ES3Type_Vector3.Instance); break; case "drag": - instance.drag = reader.Read(ES3Type_float.Instance); + instance.linearDamping = reader.Read(ES3Type_float.Instance); break; case "angularDrag": - instance.angularDrag = reader.Read(ES3Type_float.Instance); + instance.angularDamping = reader.Read(ES3Type_float.Instance); break; case "mass": instance.mass = reader.Read(ES3Type_float.Instance); diff --git a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_SphereCollider.cs b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_SphereCollider.cs index 8f1f10b..978c7fa 100644 --- a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_SphereCollider.cs +++ b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/Component Types/ES3Type_SphereCollider.cs @@ -48,7 +48,7 @@ namespace ES3Types instance.contactOffset = reader.Read(ES3Type_float.Instance); break; case "material": - instance.sharedMaterial = reader.Read(); + instance.sharedMaterial = reader.Read(); break; default: reader.Skip(); diff --git a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/ES3Type_PhysicMaterial.cs b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/ES3Type_PhysicMaterial.cs index 1b48403..d5411ef 100644 --- a/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/ES3Type_PhysicMaterial.cs +++ b/Assets/Plugins/Easy Save 3/Scripts/Types/Unity Types/ES3Type_PhysicMaterial.cs @@ -8,11 +8,11 @@ namespace ES3Types { public static ES3Type Instance = null; - public ES3Type_PhysicMaterial() : base(typeof(UnityEngine.PhysicMaterial)){ Instance = this; } + public ES3Type_PhysicMaterial() : base(typeof(UnityEngine.PhysicsMaterial)){ Instance = this; } protected override void WriteObject(object obj, ES3Writer writer) { - var instance = (UnityEngine.PhysicMaterial)obj; + var instance = (UnityEngine.PhysicsMaterial)obj; writer.WriteProperty("dynamicFriction", instance.dynamicFriction, ES3Type_float.Instance); writer.WriteProperty("staticFriction", instance.staticFriction, ES3Type_float.Instance); @@ -23,7 +23,7 @@ namespace ES3Types protected override void ReadObject(ES3Reader reader, object obj) { - var instance = (UnityEngine.PhysicMaterial)obj; + var instance = (UnityEngine.PhysicsMaterial)obj; foreach(string propertyName in reader.Properties) { switch(propertyName) @@ -39,10 +39,10 @@ namespace ES3Types instance.bounciness = reader.Read(ES3Type_float.Instance); break; case "frictionCombine": - instance.frictionCombine = reader.Read(); + instance.frictionCombine = reader.Read(); break; case "bounceCombine": - instance.bounceCombine = reader.Read(); + instance.bounceCombine = reader.Read(); break; default: reader.Skip(); @@ -53,7 +53,7 @@ namespace ES3Types protected override object ReadObject(ES3Reader reader) { - var instance = new UnityEngine.PhysicMaterial(); + var instance = new UnityEngine.PhysicsMaterial(); ReadObject(reader, instance); return instance; } @@ -63,7 +63,7 @@ namespace ES3Types { public static ES3Type Instance; - public ES3Type_PhysicMaterialArray() : base(typeof(UnityEngine.PhysicMaterial[]), ES3Type_PhysicMaterial.Instance) + public ES3Type_PhysicMaterialArray() : base(typeof(UnityEngine.PhysicsMaterial[]), ES3Type_PhysicMaterial.Instance) { Instance = this; } diff --git a/Assets/Plugins/iOS/NativeTemplates/GADTMediumTemplateView.xib.meta b/Assets/Plugins/iOS/NativeTemplates/GADTMediumTemplateView.xib.meta index 0ec4fd9..881c591 100644 --- a/Assets/Plugins/iOS/NativeTemplates/GADTMediumTemplateView.xib.meta +++ b/Assets/Plugins/iOS/NativeTemplates/GADTMediumTemplateView.xib.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 766f36c9503c48e5915b2dbb1b312f64 +guid: 3c2a51e42d350e04bb843b1d11570b03 labels: - gvh - gvh_version-9.2.1 diff --git a/Assets/Plugins/iOS/NativeTemplates/GADTSmallTemplateView.xib.meta b/Assets/Plugins/iOS/NativeTemplates/GADTSmallTemplateView.xib.meta index 15d1f0a..e3c7041 100644 --- a/Assets/Plugins/iOS/NativeTemplates/GADTSmallTemplateView.xib.meta +++ b/Assets/Plugins/iOS/NativeTemplates/GADTSmallTemplateView.xib.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 6af78782470b4da9994fc4cf04f03183 +guid: 89e62acecc07ea143a7ded3808952f08 labels: - gvh - gvh_version-9.2.1 diff --git a/Packages/manifest.json b/Packages/manifest.json index 5c442c4..2f6f509 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -3,20 +3,21 @@ "com.google.ads.mobile": "9.5.0", "com.google.ads.mobile.mediation.metaaudiencenetwork": "3.14.0", "com.unity.2d.sprite": "1.0.0", - "com.unity.addressables": "1.22.3", - "com.unity.ai.navigation": "1.1.5", - "com.unity.collab-proxy": "2.6.0", - "com.unity.ide.rider": "3.0.34", - "com.unity.ide.visualstudio": "2.0.22", + "com.unity.addressables": "2.6.0", + "com.unity.ai.navigation": "2.0.8", + "com.unity.collab-proxy": "2.8.2", + "com.unity.ide.rider": "3.0.36", + "com.unity.ide.visualstudio": "2.0.23", "com.unity.ide.vscode": "1.2.5", - "com.unity.mobile.android-logcat": "1.4.3", + "com.unity.mobile.android-logcat": "1.4.5", + "com.unity.multiplayer.center": "1.0.0", "com.unity.nuget.newtonsoft-json": "3.2.1", "com.unity.purchasing": "4.12.2", - "com.unity.services.ccd.management": "2.2.2", - "com.unity.test-framework": "1.1.33", - "com.unity.textmeshpro": "3.0.7", - "com.unity.timeline": "1.7.6", - "com.unity.ugui": "1.0.0", + "com.unity.services.ccd.management": "3.0.0", + "com.unity.test-framework": "1.5.1", + "com.unity.timeline": "1.8.7", + "com.unity.ugui": "2.0.0", + "com.unity.modules.accessibility": "1.0.0", "com.unity.modules.ai": "1.0.0", "com.unity.modules.androidjni": "1.0.0", "com.unity.modules.animation": "1.0.0", diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json index 838847e..3898634 100644 --- a/Packages/packages-lock.json +++ b/Packages/packages-lock.json @@ -33,21 +33,23 @@ "dependencies": {} }, "com.unity.addressables": { - "version": "1.22.3", + "version": "2.6.0", "depth": 0, "source": "registry", "dependencies": { + "com.unity.profiling.core": "1.0.2", + "com.unity.test-framework": "1.4.5", "com.unity.modules.assetbundle": "1.0.0", "com.unity.modules.jsonserialize": "1.0.0", "com.unity.modules.imageconversion": "1.0.0", "com.unity.modules.unitywebrequest": "1.0.0", - "com.unity.scriptablebuildpipeline": "1.21.25", + "com.unity.scriptablebuildpipeline": "2.4.0", "com.unity.modules.unitywebrequestassetbundle": "1.0.0" }, "url": "https://packages.unity.com" }, "com.unity.ai.navigation": { - "version": "1.1.5", + "version": "2.0.8", "depth": 0, "source": "registry", "dependencies": { @@ -56,21 +58,20 @@ "url": "https://packages.unity.com" }, "com.unity.collab-proxy": { - "version": "2.6.0", + "version": "2.8.2", "depth": 0, "source": "registry", "dependencies": {}, "url": "https://packages.unity.com" }, "com.unity.ext.nunit": { - "version": "1.0.6", + "version": "2.0.5", "depth": 1, - "source": "registry", - "dependencies": {}, - "url": "https://packages.unity.com" + "source": "builtin", + "dependencies": {} }, "com.unity.ide.rider": { - "version": "3.0.34", + "version": "3.0.36", "depth": 0, "source": "registry", "dependencies": { @@ -79,7 +80,7 @@ "url": "https://packages.unity.com" }, "com.unity.ide.visualstudio": { - "version": "2.0.22", + "version": "2.0.23", "depth": 0, "source": "registry", "dependencies": { @@ -95,12 +96,20 @@ "url": "https://packages.unity.com" }, "com.unity.mobile.android-logcat": { - "version": "1.4.3", + "version": "1.4.5", "depth": 0, "source": "registry", "dependencies": {}, "url": "https://packages.unity.com" }, + "com.unity.multiplayer.center": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + } + }, "com.unity.nuget.newtonsoft-json": { "version": "3.2.1", "depth": 0, @@ -108,6 +117,13 @@ "dependencies": {}, "url": "https://packages.unity.com" }, + "com.unity.profiling.core": { + "version": "1.0.2", + "depth": 1, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, "com.unity.purchasing": { "version": "4.12.2", "depth": 0, @@ -122,19 +138,22 @@ "url": "https://packages.unity.com" }, "com.unity.scriptablebuildpipeline": { - "version": "1.21.25", + "version": "2.4.0", "depth": 1, "source": "registry", - "dependencies": {}, + "dependencies": { + "com.unity.test-framework": "1.4.5", + "com.unity.modules.assetbundle": "1.0.0" + }, "url": "https://packages.unity.com" }, "com.unity.services.ccd.management": { - "version": "2.2.2", + "version": "3.0.0", "depth": 0, "source": "registry", "dependencies": { - "com.unity.services.core": "1.3.1", - "com.unity.nuget.newtonsoft-json": "3.0.2", + "com.unity.services.core": "1.10.1", + "com.unity.nuget.newtonsoft-json": "3.2.1", "com.unity.modules.unitywebrequest": "1.0.0", "com.unity.modules.unitywebrequestwww": "1.0.0", "com.unity.modules.unitywebrequestaudio": "1.0.0", @@ -155,27 +174,17 @@ "url": "https://packages.unity.com" }, "com.unity.test-framework": { - "version": "1.1.33", + "version": "1.5.1", "depth": 0, - "source": "registry", + "source": "builtin", "dependencies": { - "com.unity.ext.nunit": "1.0.6", + "com.unity.ext.nunit": "2.0.3", "com.unity.modules.imgui": "1.0.0", "com.unity.modules.jsonserialize": "1.0.0" - }, - "url": "https://packages.unity.com" - }, - "com.unity.textmeshpro": { - "version": "3.0.7", - "depth": 0, - "source": "registry", - "dependencies": { - "com.unity.ugui": "1.0.0" - }, - "url": "https://packages.unity.com" + } }, "com.unity.timeline": { - "version": "1.7.6", + "version": "1.8.7", "depth": 0, "source": "registry", "dependencies": { @@ -187,7 +196,7 @@ "url": "https://packages.unity.com" }, "com.unity.ugui": { - "version": "1.0.0", + "version": "2.0.0", "depth": 0, "source": "builtin", "dependencies": { @@ -195,6 +204,12 @@ "com.unity.modules.imgui": "1.0.0" } }, + "com.unity.modules.accessibility": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, "com.unity.modules.ai": { "version": "1.0.0", "depth": 0, @@ -242,6 +257,12 @@ "com.unity.modules.animation": "1.0.0" } }, + "com.unity.modules.hierarchycore": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": {} + }, "com.unity.modules.imageconversion": { "version": "1.0.0", "depth": 0, @@ -330,7 +351,8 @@ "dependencies": { "com.unity.modules.ui": "1.0.0", "com.unity.modules.imgui": "1.0.0", - "com.unity.modules.jsonserialize": "1.0.0" + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.hierarchycore": "1.0.0" } }, "com.unity.modules.umbra": { diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 3a6622c..b21d2b1 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,7 +3,7 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 26 + serializedVersion: 28 productGUID: c13970c186fdaf542a589307757b6cad AndroidProfiler: 0 AndroidFilterTouchesWhenObscured: 0 @@ -12,12 +12,12 @@ PlayerSettings: targetDevice: 2 useOnDemandResources: 0 accelerometerFrequency: 60 - companyName: SkaGames - productName: "\uD5CC\uD305 \uB9DE\uACE0" + companyName: FilGoodBandits + productName: "\uB79C\uB364 \uC5EC\uCE5C \uB9DE\uACE0" defaultCursor: {fileID: 0} cursorHotspot: {x: 0, y: 0} m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} - m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashScreen: 0 m_ShowUnitySplashLogo: 1 m_SplashScreenOverlayOpacity: 1 m_SplashScreenAnimation: 1 @@ -49,6 +49,7 @@ PlayerSettings: m_StereoRenderingPath: 0 m_ActiveColorSpace: 0 unsupportedMSAAFallback: 0 + m_SpriteBatchMaxVertexCount: 65535 m_SpriteBatchVertexThreshold: 300 m_MTRendering: 1 mipStripping: 0 @@ -68,23 +69,23 @@ PlayerSettings: disableDepthAndStencilBuffers: 0 androidStartInFullscreen: 1 androidRenderOutsideSafeArea: 0 - androidUseSwappy: 1 + androidUseSwappy: 0 androidBlitType: 2 - androidResizableWindow: 0 + androidResizeableActivity: 0 androidDefaultWindowWidth: 1920 androidDefaultWindowHeight: 1080 androidMinimumWindowWidth: 400 androidMinimumWindowHeight: 300 androidFullscreenMode: 1 androidAutoRotationBehavior: 1 + androidPredictiveBackSupport: 1 + androidApplicationEntry: 1 defaultIsNativeResolution: 1 macRetinaSupport: 1 runInBackground: 1 - captureSingleScreen: 0 muteOtherAudioSources: 0 Prepare IOS For Recording: 0 Force IOS Speakers When Recording: 0 - audioSpatialExperience: 0 deferSystemGesturesMode: 0 hideHomeButton: 0 submitAnalytics: 1 @@ -97,6 +98,7 @@ PlayerSettings: useMacAppStoreValidation: 0 macAppStoreCategory: public.app-category.games gpuSkinning: 0 + meshDeformation: 0 xboxPIXTextureCapture: 0 xboxEnableAvatar: 0 xboxEnableKinect: 0 @@ -128,10 +130,8 @@ PlayerSettings: switchAllowGpuScratchShrinking: 0 switchNVNMaxPublicTextureIDCount: 0 switchNVNMaxPublicSamplerIDCount: 0 - switchNVNGraphicsFirmwareMemory: 32 switchMaxWorkerMultiple: 8 - stadiaPresentMode: 0 - stadiaTargetFramerate: 0 + switchNVNGraphicsFirmwareMemory: 32 vulkanNumSwapchainBuffers: 3 vulkanEnableSetSRGBWrite: 0 vulkanEnablePreTransform: 0 @@ -140,7 +140,7 @@ PlayerSettings: loadStoreDebugModeEnabled: 0 visionOSBundleVersion: 1.0 tvOSBundleVersion: 1.0 - bundleVersion: 1.1.7 + bundleVersion: 0.0.1 preloadedAssets: [] metroInputSource: 0 wsaTransparentSwapchain: 0 @@ -161,8 +161,9 @@ PlayerSettings: resetResolutionOnWindowResize: 0 androidSupportedAspectRatio: 1 androidMaxAspectRatio: 2.1 + androidMinAspectRatio: 1 applicationIdentifier: - Android: com.SkaGames.GSProject + Android: com.fgb.randomgfgostop Lumin: com.DefaultCompany.com.unity.template.mobile2D Standalone: com.DefaultCompany.com.unity.template.mobile2D iPhone: com.DefaultCompany.com.unity.template.mobile2D @@ -173,9 +174,9 @@ PlayerSettings: iPhone: 0 tvOS: 0 overrideDefaultApplicationIdentifier: 1 - AndroidBundleVersionCode: 16 - AndroidMinSdkVersion: 25 - AndroidTargetSdkVersion: 34 + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 23 + AndroidTargetSdkVersion: 35 AndroidPreferredInstallLocation: 1 aotOptions: stripEngineCode: 1 @@ -184,18 +185,18 @@ PlayerSettings: ForceInternetPermission: 0 ForceSDCardPermission: 0 CreateWallpaper: 0 - APKExpansionFiles: 0 + androidSplitApplicationBinary: 0 keepLoadedShadersAlive: 0 StripUnusedMeshComponents: 0 strictShaderVariantMatching: 0 VertexChannelCompressionMask: 4054 iPhoneSdkVersion: 988 iOSSimulatorArchitecture: 0 - iOSTargetOSVersionString: 12.0 + iOSTargetOSVersionString: 13.0 tvOSSdkVersion: 0 tvOSSimulatorArchitecture: 0 tvOSRequireExtendedGameController: 0 - tvOSTargetOSVersionString: 12.0 + tvOSTargetOSVersionString: 13.0 VisionOSSdkVersion: 0 VisionOSTargetOSVersionString: 1.0 uIPrerenderedIcon: 0 @@ -222,7 +223,6 @@ PlayerSettings: rgba: 0 iOSLaunchScreenFillPct: 100 iOSLaunchScreenSize: 100 - iOSLaunchScreenCustomXibPath: iOSLaunchScreeniPadType: 0 iOSLaunchScreeniPadImage: {fileID: 0} iOSLaunchScreeniPadBackgroundColor: @@ -230,7 +230,6 @@ PlayerSettings: rgba: 0 iOSLaunchScreeniPadFillPct: 100 iOSLaunchScreeniPadSize: 100 - iOSLaunchScreeniPadCustomXibPath: iOSLaunchScreenCustomStoryboardPath: iOSLaunchScreeniPadCustomStoryboardPath: iOSDeviceRequirements: [] @@ -264,15 +263,15 @@ PlayerSettings: useCustomLauncherGradleManifest: 0 useCustomBaseGradleTemplate: 0 useCustomGradlePropertiesTemplate: 1 - useCustomGradleSettingsTemplate: 0 + useCustomGradleSettingsTemplate: 1 useCustomProguardFile: 0 AndroidTargetArchitectures: 3 - AndroidTargetDevices: 0 AndroidSplashScreenScale: 0 androidSplashScreen: {fileID: 0} AndroidKeystoreName: '{inproject}: GSProject.keystore' AndroidKeyaliasName: AndroidEnableArmv9SecurityFeatures: 0 + AndroidEnableArm64MTE: 0 AndroidBuildApkPerCpuArchitecture: 0 AndroidTVCompatibility: 0 AndroidIsGame: 1 @@ -285,11 +284,12 @@ PlayerSettings: height: 180 banner: {fileID: 0} androidGamepadSupportLevel: 0 - chromeosInputEmulation: 1 AndroidMinifyRelease: 0 AndroidMinifyDebug: 0 AndroidValidateAppBundleSize: 1 AndroidAppBundleSizeToValidate: 150 + AndroidReportGooglePlayAppDependencies: 1 + androidSymbolsSizeThreshold: 800 m_BuildTargetIcons: - m_BuildTarget: m_Icons: @@ -520,8 +520,8 @@ PlayerSettings: m_BuildTargetGraphicsJobMode: [] m_BuildTargetGraphicsAPIs: - m_BuildTarget: AndroidPlayer - m_APIs: 150000000b000000 - m_Automatic: 1 + m_APIs: 0b000000 + m_Automatic: 0 - m_BuildTarget: iOSSupport m_APIs: 10000000 m_Automatic: 1 @@ -541,10 +541,14 @@ PlayerSettings: m_BuildTargetGroupLightmapSettings: [] m_BuildTargetGroupLoadStoreDebugModeSettings: [] m_BuildTargetNormalMapEncoding: [] - m_BuildTargetDefaultTextureCompressionFormat: [] + m_BuildTargetDefaultTextureCompressionFormat: + - serializedVersion: 3 + m_BuildTarget: Android + m_Formats: 01000000 playModeTestRunnerEnabled: 0 runPlayModeTestAsEditModeTest: 0 actionOnDotNetUnhandledException: 1 + editorGfxJobOverride: 1 enableInternalProfiler: 0 logObjCUncaughtExceptions: 1 enableCrashReportAPI: 0 @@ -552,7 +556,7 @@ PlayerSettings: locationUsageDescription: microphoneUsageDescription: bluetoothUsageDescription: - macOSTargetOSVersion: 10.13.0 + macOSTargetOSVersion: 11.0 switchNMETAOverride: switchNetLibKey: switchSocketMemoryPoolSize: 6144 @@ -697,6 +701,7 @@ PlayerSettings: switchEnableRamDiskSupport: 0 switchMicroSleepForYieldTime: 25 switchRamDiskSpaceSize: 12 + switchUpgradedPlayerSettingsToNMETA: 0 ps4NPAgeRating: 12 ps4NPTitleSecret: ps4NPTrophyPackPath: @@ -799,7 +804,12 @@ PlayerSettings: webGLMemoryLinearGrowthStep: 16 webGLMemoryGeometricGrowthStep: 0.2 webGLMemoryGeometricGrowthCap: 96 + webGLEnableWebGPU: 0 webGLPowerPreference: 2 + webGLWebAssemblyTable: 0 + webGLWebAssemblyBigInt: 0 + webGLCloseOnQuit: 0 + webWasm2023: 0 scriptingDefineSymbols: 0: UNITY_VISUAL_SCRIPTING additionalCompilerArguments: {} @@ -808,6 +818,7 @@ PlayerSettings: Android: 1 il2cppCompilerConfiguration: {} il2cppCodeGeneration: {} + il2cppStacktraceInformation: {} managedStrippingLevel: EmbeddedLinux: 1 GameCoreScarlett: 1 @@ -833,6 +844,7 @@ PlayerSettings: gcIncremental: 1 gcWBarrierValidation: 0 apiCompatibilityLevelPerPlatform: {} + editorAssembliesCompatibilityLevel: 2 m_RenderingPath: 1 m_MobileRenderingPath: 1 metroPackageName: 2DBuiltInRenderer @@ -907,9 +919,11 @@ PlayerSettings: hmiPlayerDataPath: hmiForceSRGBBlit: 1 embeddedLinuxEnableGamepadInput: 1 - hmiLogStartupTiming: 0 hmiCpuConfiguration: - apiCompatibilityLevel: 3 + hmiLogStartupTiming: 0 + qnxGraphicConfPath: + apiCompatibilityLevel: 6 + captureStartupLogs: {} activeInputHandler: 0 windowsGamepadBackendHint: 0 cloudProjectId: 5fd5767a-af95-4147-a047-6025b4ab9d1e @@ -923,3 +937,5 @@ PlayerSettings: platformRequiresReadableAssets: 0 virtualTexturingSupportEnabled: 0 insecureHttpOption: 0 + androidVulkanDenyFilterList: [] + androidVulkanAllowFilterList: [] diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt index 09e5a3b..5826552 100644 --- a/ProjectSettings/ProjectVersion.txt +++ b/ProjectSettings/ProjectVersion.txt @@ -1,2 +1,2 @@ -m_EditorVersion: 2022.3.55f1 -m_EditorVersionWithRevision: 2022.3.55f1 (9f374180d209) +m_EditorVersion: 6000.0.55f1 +m_EditorVersionWithRevision: 6000.0.55f1 (c5f59906196d)