기본 세팅 및 유니티 버전 6으로
This commit is contained in:
parent
1938e68631
commit
a728ba36c2
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 620386859b802a14ba33575e8cb3276b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
|
@ -49,7 +49,7 @@ namespace ES3Types
|
|||
instance.contactOffset = reader.Read<System.Single>();
|
||||
break;
|
||||
case "material":
|
||||
instance.sharedMaterial = reader.Read<UnityEngine.PhysicMaterial>();
|
||||
instance.sharedMaterial = reader.Read<UnityEngine.PhysicsMaterial>();
|
||||
break;
|
||||
default:
|
||||
reader.Skip();
|
||||
|
|
|
|||
|
|
@ -57,7 +57,7 @@ namespace ES3Types
|
|||
instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance);
|
||||
break;
|
||||
case "material":
|
||||
instance.sharedMaterial = reader.Read<UnityEngine.PhysicMaterial>();
|
||||
instance.sharedMaterial = reader.Read<UnityEngine.PhysicsMaterial>();
|
||||
break;
|
||||
default:
|
||||
reader.Skip();
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ namespace ES3Types
|
|||
instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance);
|
||||
break;
|
||||
case "material":
|
||||
instance.sharedMaterial = reader.Read<UnityEngine.PhysicMaterial>(ES3Type_PhysicMaterial.Instance);
|
||||
instance.sharedMaterial = reader.Read<PhysicsMaterial>(ES3Type_PhysicMaterial.Instance);
|
||||
break;
|
||||
default:
|
||||
reader.Skip();
|
||||
|
|
|
|||
|
|
@ -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<UnityEngine.Vector3>(ES3Type_Vector3.Instance);
|
||||
instance.linearVelocity = reader.Read<UnityEngine.Vector3>(ES3Type_Vector3.Instance);
|
||||
break;
|
||||
case "angularVelocity":
|
||||
instance.angularVelocity = reader.Read<UnityEngine.Vector3>(ES3Type_Vector3.Instance);
|
||||
break;
|
||||
case "drag":
|
||||
instance.drag = reader.Read<System.Single>(ES3Type_float.Instance);
|
||||
instance.linearDamping = reader.Read<System.Single>(ES3Type_float.Instance);
|
||||
break;
|
||||
case "angularDrag":
|
||||
instance.angularDrag = reader.Read<System.Single>(ES3Type_float.Instance);
|
||||
instance.angularDamping = reader.Read<System.Single>(ES3Type_float.Instance);
|
||||
break;
|
||||
case "mass":
|
||||
instance.mass = reader.Read<System.Single>(ES3Type_float.Instance);
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ namespace ES3Types
|
|||
instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance);
|
||||
break;
|
||||
case "material":
|
||||
instance.sharedMaterial = reader.Read<UnityEngine.PhysicMaterial>();
|
||||
instance.sharedMaterial = reader.Read<UnityEngine.PhysicsMaterial>();
|
||||
break;
|
||||
default:
|
||||
reader.Skip();
|
||||
|
|
|
|||
|
|
@ -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<T>(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<System.Single>(ES3Type_float.Instance);
|
||||
break;
|
||||
case "frictionCombine":
|
||||
instance.frictionCombine = reader.Read<UnityEngine.PhysicMaterialCombine>();
|
||||
instance.frictionCombine = reader.Read<UnityEngine.PhysicsMaterialCombine>();
|
||||
break;
|
||||
case "bounceCombine":
|
||||
instance.bounceCombine = reader.Read<UnityEngine.PhysicMaterialCombine>();
|
||||
instance.bounceCombine = reader.Read<UnityEngine.PhysicsMaterialCombine>();
|
||||
break;
|
||||
default:
|
||||
reader.Skip();
|
||||
|
|
@ -53,7 +53,7 @@ namespace ES3Types
|
|||
|
||||
protected override object ReadObject<T>(ES3Reader reader)
|
||||
{
|
||||
var instance = new UnityEngine.PhysicMaterial();
|
||||
var instance = new UnityEngine.PhysicsMaterial();
|
||||
ReadObject<T>(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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 766f36c9503c48e5915b2dbb1b312f64
|
||||
guid: 3c2a51e42d350e04bb843b1d11570b03
|
||||
labels:
|
||||
- gvh
|
||||
- gvh_version-9.2.1
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 6af78782470b4da9994fc4cf04f03183
|
||||
guid: 89e62acecc07ea143a7ded3808952f08
|
||||
labels:
|
||||
- gvh
|
||||
- gvh_version-9.2.1
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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: []
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue