기본 세팅 및 유니티 버전 6으로

This commit is contained in:
Ino 2025-08-28 06:17:31 +09:00
parent 1938e68631
commit a728ba36c2
13 changed files with 134 additions and 103 deletions

View File

@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 620386859b802a14ba33575e8cb3276b
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -49,7 +49,7 @@ namespace ES3Types
instance.contactOffset = reader.Read<System.Single>(); instance.contactOffset = reader.Read<System.Single>();
break; break;
case "material": case "material":
instance.sharedMaterial = reader.Read<UnityEngine.PhysicMaterial>(); instance.sharedMaterial = reader.Read<UnityEngine.PhysicsMaterial>();
break; break;
default: default:
reader.Skip(); reader.Skip();

View File

@ -57,7 +57,7 @@ namespace ES3Types
instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance); instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance);
break; break;
case "material": case "material":
instance.sharedMaterial = reader.Read<UnityEngine.PhysicMaterial>(); instance.sharedMaterial = reader.Read<UnityEngine.PhysicsMaterial>();
break; break;
default: default:
reader.Skip(); reader.Skip();

View File

@ -58,7 +58,7 @@ namespace ES3Types
instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance); instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance);
break; break;
case "material": case "material":
instance.sharedMaterial = reader.Read<UnityEngine.PhysicMaterial>(ES3Type_PhysicMaterial.Instance); instance.sharedMaterial = reader.Read<PhysicsMaterial>(ES3Type_PhysicMaterial.Instance);
break; break;
default: default:
reader.Skip(); reader.Skip();

View File

@ -16,10 +16,10 @@ namespace ES3Types
{ {
var instance = (UnityEngine.Rigidbody)obj; 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("angularVelocity", instance.angularVelocity, ES3Type_Vector3.Instance);
writer.WriteProperty("drag", instance.drag, ES3Type_float.Instance); writer.WriteProperty("drag", instance.linearDamping, ES3Type_float.Instance);
writer.WriteProperty("angularDrag", instance.angularDrag, ES3Type_float.Instance); writer.WriteProperty("angularDrag", instance.angularDamping, ES3Type_float.Instance);
writer.WriteProperty("mass", instance.mass, ES3Type_float.Instance); writer.WriteProperty("mass", instance.mass, ES3Type_float.Instance);
writer.WriteProperty("useGravity", instance.useGravity, ES3Type_bool.Instance); writer.WriteProperty("useGravity", instance.useGravity, ES3Type_bool.Instance);
writer.WriteProperty("maxDepenetrationVelocity", instance.maxDepenetrationVelocity, ES3Type_float.Instance); writer.WriteProperty("maxDepenetrationVelocity", instance.maxDepenetrationVelocity, ES3Type_float.Instance);
@ -47,16 +47,16 @@ namespace ES3Types
{ {
case "velocity": case "velocity":
instance.velocity = reader.Read<UnityEngine.Vector3>(ES3Type_Vector3.Instance); instance.linearVelocity = reader.Read<UnityEngine.Vector3>(ES3Type_Vector3.Instance);
break; break;
case "angularVelocity": case "angularVelocity":
instance.angularVelocity = reader.Read<UnityEngine.Vector3>(ES3Type_Vector3.Instance); instance.angularVelocity = reader.Read<UnityEngine.Vector3>(ES3Type_Vector3.Instance);
break; break;
case "drag": case "drag":
instance.drag = reader.Read<System.Single>(ES3Type_float.Instance); instance.linearDamping = reader.Read<System.Single>(ES3Type_float.Instance);
break; break;
case "angularDrag": case "angularDrag":
instance.angularDrag = reader.Read<System.Single>(ES3Type_float.Instance); instance.angularDamping = reader.Read<System.Single>(ES3Type_float.Instance);
break; break;
case "mass": case "mass":
instance.mass = reader.Read<System.Single>(ES3Type_float.Instance); instance.mass = reader.Read<System.Single>(ES3Type_float.Instance);

View File

@ -48,7 +48,7 @@ namespace ES3Types
instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance); instance.contactOffset = reader.Read<System.Single>(ES3Type_float.Instance);
break; break;
case "material": case "material":
instance.sharedMaterial = reader.Read<UnityEngine.PhysicMaterial>(); instance.sharedMaterial = reader.Read<UnityEngine.PhysicsMaterial>();
break; break;
default: default:
reader.Skip(); reader.Skip();

View File

@ -8,11 +8,11 @@ namespace ES3Types
{ {
public static ES3Type Instance = null; 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) 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("dynamicFriction", instance.dynamicFriction, ES3Type_float.Instance);
writer.WriteProperty("staticFriction", instance.staticFriction, 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) 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) foreach(string propertyName in reader.Properties)
{ {
switch(propertyName) switch(propertyName)
@ -39,10 +39,10 @@ namespace ES3Types
instance.bounciness = reader.Read<System.Single>(ES3Type_float.Instance); instance.bounciness = reader.Read<System.Single>(ES3Type_float.Instance);
break; break;
case "frictionCombine": case "frictionCombine":
instance.frictionCombine = reader.Read<UnityEngine.PhysicMaterialCombine>(); instance.frictionCombine = reader.Read<UnityEngine.PhysicsMaterialCombine>();
break; break;
case "bounceCombine": case "bounceCombine":
instance.bounceCombine = reader.Read<UnityEngine.PhysicMaterialCombine>(); instance.bounceCombine = reader.Read<UnityEngine.PhysicsMaterialCombine>();
break; break;
default: default:
reader.Skip(); reader.Skip();
@ -53,7 +53,7 @@ namespace ES3Types
protected override object ReadObject<T>(ES3Reader reader) protected override object ReadObject<T>(ES3Reader reader)
{ {
var instance = new UnityEngine.PhysicMaterial(); var instance = new UnityEngine.PhysicsMaterial();
ReadObject<T>(reader, instance); ReadObject<T>(reader, instance);
return instance; return instance;
} }
@ -63,7 +63,7 @@ namespace ES3Types
{ {
public static ES3Type Instance; 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; Instance = this;
} }

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 766f36c9503c48e5915b2dbb1b312f64 guid: 3c2a51e42d350e04bb843b1d11570b03
labels: labels:
- gvh - gvh
- gvh_version-9.2.1 - gvh_version-9.2.1

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 6af78782470b4da9994fc4cf04f03183 guid: 89e62acecc07ea143a7ded3808952f08
labels: labels:
- gvh - gvh
- gvh_version-9.2.1 - gvh_version-9.2.1

View File

@ -3,20 +3,21 @@
"com.google.ads.mobile": "9.5.0", "com.google.ads.mobile": "9.5.0",
"com.google.ads.mobile.mediation.metaaudiencenetwork": "3.14.0", "com.google.ads.mobile.mediation.metaaudiencenetwork": "3.14.0",
"com.unity.2d.sprite": "1.0.0", "com.unity.2d.sprite": "1.0.0",
"com.unity.addressables": "1.22.3", "com.unity.addressables": "2.6.0",
"com.unity.ai.navigation": "1.1.5", "com.unity.ai.navigation": "2.0.8",
"com.unity.collab-proxy": "2.6.0", "com.unity.collab-proxy": "2.8.2",
"com.unity.ide.rider": "3.0.34", "com.unity.ide.rider": "3.0.36",
"com.unity.ide.visualstudio": "2.0.22", "com.unity.ide.visualstudio": "2.0.23",
"com.unity.ide.vscode": "1.2.5", "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.nuget.newtonsoft-json": "3.2.1",
"com.unity.purchasing": "4.12.2", "com.unity.purchasing": "4.12.2",
"com.unity.services.ccd.management": "2.2.2", "com.unity.services.ccd.management": "3.0.0",
"com.unity.test-framework": "1.1.33", "com.unity.test-framework": "1.5.1",
"com.unity.textmeshpro": "3.0.7", "com.unity.timeline": "1.8.7",
"com.unity.timeline": "1.7.6", "com.unity.ugui": "2.0.0",
"com.unity.ugui": "1.0.0", "com.unity.modules.accessibility": "1.0.0",
"com.unity.modules.ai": "1.0.0", "com.unity.modules.ai": "1.0.0",
"com.unity.modules.androidjni": "1.0.0", "com.unity.modules.androidjni": "1.0.0",
"com.unity.modules.animation": "1.0.0", "com.unity.modules.animation": "1.0.0",

View File

@ -33,21 +33,23 @@
"dependencies": {} "dependencies": {}
}, },
"com.unity.addressables": { "com.unity.addressables": {
"version": "1.22.3", "version": "2.6.0",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "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.assetbundle": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0", "com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.imageconversion": "1.0.0", "com.unity.modules.imageconversion": "1.0.0",
"com.unity.modules.unitywebrequest": "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" "com.unity.modules.unitywebrequestassetbundle": "1.0.0"
}, },
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.ai.navigation": { "com.unity.ai.navigation": {
"version": "1.1.5", "version": "2.0.8",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
@ -56,21 +58,20 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.collab-proxy": { "com.unity.collab-proxy": {
"version": "2.6.0", "version": "2.8.2",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.ext.nunit": { "com.unity.ext.nunit": {
"version": "1.0.6", "version": "2.0.5",
"depth": 1, "depth": 1,
"source": "registry", "source": "builtin",
"dependencies": {}, "dependencies": {}
"url": "https://packages.unity.com"
}, },
"com.unity.ide.rider": { "com.unity.ide.rider": {
"version": "3.0.34", "version": "3.0.36",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
@ -79,7 +80,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.ide.visualstudio": { "com.unity.ide.visualstudio": {
"version": "2.0.22", "version": "2.0.23",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
@ -95,12 +96,20 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.mobile.android-logcat": { "com.unity.mobile.android-logcat": {
"version": "1.4.3", "version": "1.4.5",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.com" "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": { "com.unity.nuget.newtonsoft-json": {
"version": "3.2.1", "version": "3.2.1",
"depth": 0, "depth": 0,
@ -108,6 +117,13 @@
"dependencies": {}, "dependencies": {},
"url": "https://packages.unity.com" "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": { "com.unity.purchasing": {
"version": "4.12.2", "version": "4.12.2",
"depth": 0, "depth": 0,
@ -122,19 +138,22 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.scriptablebuildpipeline": { "com.unity.scriptablebuildpipeline": {
"version": "1.21.25", "version": "2.4.0",
"depth": 1, "depth": 1,
"source": "registry", "source": "registry",
"dependencies": {}, "dependencies": {
"com.unity.test-framework": "1.4.5",
"com.unity.modules.assetbundle": "1.0.0"
},
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.services.ccd.management": { "com.unity.services.ccd.management": {
"version": "2.2.2", "version": "3.0.0",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
"com.unity.services.core": "1.3.1", "com.unity.services.core": "1.10.1",
"com.unity.nuget.newtonsoft-json": "3.0.2", "com.unity.nuget.newtonsoft-json": "3.2.1",
"com.unity.modules.unitywebrequest": "1.0.0", "com.unity.modules.unitywebrequest": "1.0.0",
"com.unity.modules.unitywebrequestwww": "1.0.0", "com.unity.modules.unitywebrequestwww": "1.0.0",
"com.unity.modules.unitywebrequestaudio": "1.0.0", "com.unity.modules.unitywebrequestaudio": "1.0.0",
@ -155,27 +174,17 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.test-framework": { "com.unity.test-framework": {
"version": "1.1.33", "version": "1.5.1",
"depth": 0, "depth": 0,
"source": "registry", "source": "builtin",
"dependencies": { "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.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "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": { "com.unity.timeline": {
"version": "1.7.6", "version": "1.8.7",
"depth": 0, "depth": 0,
"source": "registry", "source": "registry",
"dependencies": { "dependencies": {
@ -187,7 +196,7 @@
"url": "https://packages.unity.com" "url": "https://packages.unity.com"
}, },
"com.unity.ugui": { "com.unity.ugui": {
"version": "1.0.0", "version": "2.0.0",
"depth": 0, "depth": 0,
"source": "builtin", "source": "builtin",
"dependencies": { "dependencies": {
@ -195,6 +204,12 @@
"com.unity.modules.imgui": "1.0.0" "com.unity.modules.imgui": "1.0.0"
} }
}, },
"com.unity.modules.accessibility": {
"version": "1.0.0",
"depth": 0,
"source": "builtin",
"dependencies": {}
},
"com.unity.modules.ai": { "com.unity.modules.ai": {
"version": "1.0.0", "version": "1.0.0",
"depth": 0, "depth": 0,
@ -242,6 +257,12 @@
"com.unity.modules.animation": "1.0.0" "com.unity.modules.animation": "1.0.0"
} }
}, },
"com.unity.modules.hierarchycore": {
"version": "1.0.0",
"depth": 1,
"source": "builtin",
"dependencies": {}
},
"com.unity.modules.imageconversion": { "com.unity.modules.imageconversion": {
"version": "1.0.0", "version": "1.0.0",
"depth": 0, "depth": 0,
@ -330,7 +351,8 @@
"dependencies": { "dependencies": {
"com.unity.modules.ui": "1.0.0", "com.unity.modules.ui": "1.0.0",
"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",
"com.unity.modules.hierarchycore": "1.0.0"
} }
}, },
"com.unity.modules.umbra": { "com.unity.modules.umbra": {

View File

@ -3,7 +3,7 @@
--- !u!129 &1 --- !u!129 &1
PlayerSettings: PlayerSettings:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
serializedVersion: 26 serializedVersion: 28
productGUID: c13970c186fdaf542a589307757b6cad productGUID: c13970c186fdaf542a589307757b6cad
AndroidProfiler: 0 AndroidProfiler: 0
AndroidFilterTouchesWhenObscured: 0 AndroidFilterTouchesWhenObscured: 0
@ -12,12 +12,12 @@ PlayerSettings:
targetDevice: 2 targetDevice: 2
useOnDemandResources: 0 useOnDemandResources: 0
accelerometerFrequency: 60 accelerometerFrequency: 60
companyName: SkaGames companyName: FilGoodBandits
productName: "\uD5CC\uD305 \uB9DE\uACE0" productName: "\uB79C\uB364 \uC5EC\uCE5C \uB9DE\uACE0"
defaultCursor: {fileID: 0} defaultCursor: {fileID: 0}
cursorHotspot: {x: 0, y: 0} cursorHotspot: {x: 0, y: 0}
m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
m_ShowUnitySplashScreen: 1 m_ShowUnitySplashScreen: 0
m_ShowUnitySplashLogo: 1 m_ShowUnitySplashLogo: 1
m_SplashScreenOverlayOpacity: 1 m_SplashScreenOverlayOpacity: 1
m_SplashScreenAnimation: 1 m_SplashScreenAnimation: 1
@ -49,6 +49,7 @@ PlayerSettings:
m_StereoRenderingPath: 0 m_StereoRenderingPath: 0
m_ActiveColorSpace: 0 m_ActiveColorSpace: 0
unsupportedMSAAFallback: 0 unsupportedMSAAFallback: 0
m_SpriteBatchMaxVertexCount: 65535
m_SpriteBatchVertexThreshold: 300 m_SpriteBatchVertexThreshold: 300
m_MTRendering: 1 m_MTRendering: 1
mipStripping: 0 mipStripping: 0
@ -68,23 +69,23 @@ PlayerSettings:
disableDepthAndStencilBuffers: 0 disableDepthAndStencilBuffers: 0
androidStartInFullscreen: 1 androidStartInFullscreen: 1
androidRenderOutsideSafeArea: 0 androidRenderOutsideSafeArea: 0
androidUseSwappy: 1 androidUseSwappy: 0
androidBlitType: 2 androidBlitType: 2
androidResizableWindow: 0 androidResizeableActivity: 0
androidDefaultWindowWidth: 1920 androidDefaultWindowWidth: 1920
androidDefaultWindowHeight: 1080 androidDefaultWindowHeight: 1080
androidMinimumWindowWidth: 400 androidMinimumWindowWidth: 400
androidMinimumWindowHeight: 300 androidMinimumWindowHeight: 300
androidFullscreenMode: 1 androidFullscreenMode: 1
androidAutoRotationBehavior: 1 androidAutoRotationBehavior: 1
androidPredictiveBackSupport: 1
androidApplicationEntry: 1
defaultIsNativeResolution: 1 defaultIsNativeResolution: 1
macRetinaSupport: 1 macRetinaSupport: 1
runInBackground: 1 runInBackground: 1
captureSingleScreen: 0
muteOtherAudioSources: 0 muteOtherAudioSources: 0
Prepare IOS For Recording: 0 Prepare IOS For Recording: 0
Force IOS Speakers When Recording: 0 Force IOS Speakers When Recording: 0
audioSpatialExperience: 0
deferSystemGesturesMode: 0 deferSystemGesturesMode: 0
hideHomeButton: 0 hideHomeButton: 0
submitAnalytics: 1 submitAnalytics: 1
@ -97,6 +98,7 @@ PlayerSettings:
useMacAppStoreValidation: 0 useMacAppStoreValidation: 0
macAppStoreCategory: public.app-category.games macAppStoreCategory: public.app-category.games
gpuSkinning: 0 gpuSkinning: 0
meshDeformation: 0
xboxPIXTextureCapture: 0 xboxPIXTextureCapture: 0
xboxEnableAvatar: 0 xboxEnableAvatar: 0
xboxEnableKinect: 0 xboxEnableKinect: 0
@ -128,10 +130,8 @@ PlayerSettings:
switchAllowGpuScratchShrinking: 0 switchAllowGpuScratchShrinking: 0
switchNVNMaxPublicTextureIDCount: 0 switchNVNMaxPublicTextureIDCount: 0
switchNVNMaxPublicSamplerIDCount: 0 switchNVNMaxPublicSamplerIDCount: 0
switchNVNGraphicsFirmwareMemory: 32
switchMaxWorkerMultiple: 8 switchMaxWorkerMultiple: 8
stadiaPresentMode: 0 switchNVNGraphicsFirmwareMemory: 32
stadiaTargetFramerate: 0
vulkanNumSwapchainBuffers: 3 vulkanNumSwapchainBuffers: 3
vulkanEnableSetSRGBWrite: 0 vulkanEnableSetSRGBWrite: 0
vulkanEnablePreTransform: 0 vulkanEnablePreTransform: 0
@ -140,7 +140,7 @@ PlayerSettings:
loadStoreDebugModeEnabled: 0 loadStoreDebugModeEnabled: 0
visionOSBundleVersion: 1.0 visionOSBundleVersion: 1.0
tvOSBundleVersion: 1.0 tvOSBundleVersion: 1.0
bundleVersion: 1.1.7 bundleVersion: 0.0.1
preloadedAssets: [] preloadedAssets: []
metroInputSource: 0 metroInputSource: 0
wsaTransparentSwapchain: 0 wsaTransparentSwapchain: 0
@ -161,8 +161,9 @@ PlayerSettings:
resetResolutionOnWindowResize: 0 resetResolutionOnWindowResize: 0
androidSupportedAspectRatio: 1 androidSupportedAspectRatio: 1
androidMaxAspectRatio: 2.1 androidMaxAspectRatio: 2.1
androidMinAspectRatio: 1
applicationIdentifier: applicationIdentifier:
Android: com.SkaGames.GSProject Android: com.fgb.randomgfgostop
Lumin: com.DefaultCompany.com.unity.template.mobile2D Lumin: com.DefaultCompany.com.unity.template.mobile2D
Standalone: com.DefaultCompany.com.unity.template.mobile2D Standalone: com.DefaultCompany.com.unity.template.mobile2D
iPhone: com.DefaultCompany.com.unity.template.mobile2D iPhone: com.DefaultCompany.com.unity.template.mobile2D
@ -173,9 +174,9 @@ PlayerSettings:
iPhone: 0 iPhone: 0
tvOS: 0 tvOS: 0
overrideDefaultApplicationIdentifier: 1 overrideDefaultApplicationIdentifier: 1
AndroidBundleVersionCode: 16 AndroidBundleVersionCode: 1
AndroidMinSdkVersion: 25 AndroidMinSdkVersion: 23
AndroidTargetSdkVersion: 34 AndroidTargetSdkVersion: 35
AndroidPreferredInstallLocation: 1 AndroidPreferredInstallLocation: 1
aotOptions: aotOptions:
stripEngineCode: 1 stripEngineCode: 1
@ -184,18 +185,18 @@ PlayerSettings:
ForceInternetPermission: 0 ForceInternetPermission: 0
ForceSDCardPermission: 0 ForceSDCardPermission: 0
CreateWallpaper: 0 CreateWallpaper: 0
APKExpansionFiles: 0 androidSplitApplicationBinary: 0
keepLoadedShadersAlive: 0 keepLoadedShadersAlive: 0
StripUnusedMeshComponents: 0 StripUnusedMeshComponents: 0
strictShaderVariantMatching: 0 strictShaderVariantMatching: 0
VertexChannelCompressionMask: 4054 VertexChannelCompressionMask: 4054
iPhoneSdkVersion: 988 iPhoneSdkVersion: 988
iOSSimulatorArchitecture: 0 iOSSimulatorArchitecture: 0
iOSTargetOSVersionString: 12.0 iOSTargetOSVersionString: 13.0
tvOSSdkVersion: 0 tvOSSdkVersion: 0
tvOSSimulatorArchitecture: 0 tvOSSimulatorArchitecture: 0
tvOSRequireExtendedGameController: 0 tvOSRequireExtendedGameController: 0
tvOSTargetOSVersionString: 12.0 tvOSTargetOSVersionString: 13.0
VisionOSSdkVersion: 0 VisionOSSdkVersion: 0
VisionOSTargetOSVersionString: 1.0 VisionOSTargetOSVersionString: 1.0
uIPrerenderedIcon: 0 uIPrerenderedIcon: 0
@ -222,7 +223,6 @@ PlayerSettings:
rgba: 0 rgba: 0
iOSLaunchScreenFillPct: 100 iOSLaunchScreenFillPct: 100
iOSLaunchScreenSize: 100 iOSLaunchScreenSize: 100
iOSLaunchScreenCustomXibPath:
iOSLaunchScreeniPadType: 0 iOSLaunchScreeniPadType: 0
iOSLaunchScreeniPadImage: {fileID: 0} iOSLaunchScreeniPadImage: {fileID: 0}
iOSLaunchScreeniPadBackgroundColor: iOSLaunchScreeniPadBackgroundColor:
@ -230,7 +230,6 @@ PlayerSettings:
rgba: 0 rgba: 0
iOSLaunchScreeniPadFillPct: 100 iOSLaunchScreeniPadFillPct: 100
iOSLaunchScreeniPadSize: 100 iOSLaunchScreeniPadSize: 100
iOSLaunchScreeniPadCustomXibPath:
iOSLaunchScreenCustomStoryboardPath: iOSLaunchScreenCustomStoryboardPath:
iOSLaunchScreeniPadCustomStoryboardPath: iOSLaunchScreeniPadCustomStoryboardPath:
iOSDeviceRequirements: [] iOSDeviceRequirements: []
@ -264,15 +263,15 @@ PlayerSettings:
useCustomLauncherGradleManifest: 0 useCustomLauncherGradleManifest: 0
useCustomBaseGradleTemplate: 0 useCustomBaseGradleTemplate: 0
useCustomGradlePropertiesTemplate: 1 useCustomGradlePropertiesTemplate: 1
useCustomGradleSettingsTemplate: 0 useCustomGradleSettingsTemplate: 1
useCustomProguardFile: 0 useCustomProguardFile: 0
AndroidTargetArchitectures: 3 AndroidTargetArchitectures: 3
AndroidTargetDevices: 0
AndroidSplashScreenScale: 0 AndroidSplashScreenScale: 0
androidSplashScreen: {fileID: 0} androidSplashScreen: {fileID: 0}
AndroidKeystoreName: '{inproject}: GSProject.keystore' AndroidKeystoreName: '{inproject}: GSProject.keystore'
AndroidKeyaliasName: AndroidKeyaliasName:
AndroidEnableArmv9SecurityFeatures: 0 AndroidEnableArmv9SecurityFeatures: 0
AndroidEnableArm64MTE: 0
AndroidBuildApkPerCpuArchitecture: 0 AndroidBuildApkPerCpuArchitecture: 0
AndroidTVCompatibility: 0 AndroidTVCompatibility: 0
AndroidIsGame: 1 AndroidIsGame: 1
@ -285,11 +284,12 @@ PlayerSettings:
height: 180 height: 180
banner: {fileID: 0} banner: {fileID: 0}
androidGamepadSupportLevel: 0 androidGamepadSupportLevel: 0
chromeosInputEmulation: 1
AndroidMinifyRelease: 0 AndroidMinifyRelease: 0
AndroidMinifyDebug: 0 AndroidMinifyDebug: 0
AndroidValidateAppBundleSize: 1 AndroidValidateAppBundleSize: 1
AndroidAppBundleSizeToValidate: 150 AndroidAppBundleSizeToValidate: 150
AndroidReportGooglePlayAppDependencies: 1
androidSymbolsSizeThreshold: 800
m_BuildTargetIcons: m_BuildTargetIcons:
- m_BuildTarget: - m_BuildTarget:
m_Icons: m_Icons:
@ -520,8 +520,8 @@ PlayerSettings:
m_BuildTargetGraphicsJobMode: [] m_BuildTargetGraphicsJobMode: []
m_BuildTargetGraphicsAPIs: m_BuildTargetGraphicsAPIs:
- m_BuildTarget: AndroidPlayer - m_BuildTarget: AndroidPlayer
m_APIs: 150000000b000000 m_APIs: 0b000000
m_Automatic: 1 m_Automatic: 0
- m_BuildTarget: iOSSupport - m_BuildTarget: iOSSupport
m_APIs: 10000000 m_APIs: 10000000
m_Automatic: 1 m_Automatic: 1
@ -541,10 +541,14 @@ PlayerSettings:
m_BuildTargetGroupLightmapSettings: [] m_BuildTargetGroupLightmapSettings: []
m_BuildTargetGroupLoadStoreDebugModeSettings: [] m_BuildTargetGroupLoadStoreDebugModeSettings: []
m_BuildTargetNormalMapEncoding: [] m_BuildTargetNormalMapEncoding: []
m_BuildTargetDefaultTextureCompressionFormat: [] m_BuildTargetDefaultTextureCompressionFormat:
- serializedVersion: 3
m_BuildTarget: Android
m_Formats: 01000000
playModeTestRunnerEnabled: 0 playModeTestRunnerEnabled: 0
runPlayModeTestAsEditModeTest: 0 runPlayModeTestAsEditModeTest: 0
actionOnDotNetUnhandledException: 1 actionOnDotNetUnhandledException: 1
editorGfxJobOverride: 1
enableInternalProfiler: 0 enableInternalProfiler: 0
logObjCUncaughtExceptions: 1 logObjCUncaughtExceptions: 1
enableCrashReportAPI: 0 enableCrashReportAPI: 0
@ -552,7 +556,7 @@ PlayerSettings:
locationUsageDescription: locationUsageDescription:
microphoneUsageDescription: microphoneUsageDescription:
bluetoothUsageDescription: bluetoothUsageDescription:
macOSTargetOSVersion: 10.13.0 macOSTargetOSVersion: 11.0
switchNMETAOverride: switchNMETAOverride:
switchNetLibKey: switchNetLibKey:
switchSocketMemoryPoolSize: 6144 switchSocketMemoryPoolSize: 6144
@ -697,6 +701,7 @@ PlayerSettings:
switchEnableRamDiskSupport: 0 switchEnableRamDiskSupport: 0
switchMicroSleepForYieldTime: 25 switchMicroSleepForYieldTime: 25
switchRamDiskSpaceSize: 12 switchRamDiskSpaceSize: 12
switchUpgradedPlayerSettingsToNMETA: 0
ps4NPAgeRating: 12 ps4NPAgeRating: 12
ps4NPTitleSecret: ps4NPTitleSecret:
ps4NPTrophyPackPath: ps4NPTrophyPackPath:
@ -799,7 +804,12 @@ PlayerSettings:
webGLMemoryLinearGrowthStep: 16 webGLMemoryLinearGrowthStep: 16
webGLMemoryGeometricGrowthStep: 0.2 webGLMemoryGeometricGrowthStep: 0.2
webGLMemoryGeometricGrowthCap: 96 webGLMemoryGeometricGrowthCap: 96
webGLEnableWebGPU: 0
webGLPowerPreference: 2 webGLPowerPreference: 2
webGLWebAssemblyTable: 0
webGLWebAssemblyBigInt: 0
webGLCloseOnQuit: 0
webWasm2023: 0
scriptingDefineSymbols: scriptingDefineSymbols:
0: UNITY_VISUAL_SCRIPTING 0: UNITY_VISUAL_SCRIPTING
additionalCompilerArguments: {} additionalCompilerArguments: {}
@ -808,6 +818,7 @@ PlayerSettings:
Android: 1 Android: 1
il2cppCompilerConfiguration: {} il2cppCompilerConfiguration: {}
il2cppCodeGeneration: {} il2cppCodeGeneration: {}
il2cppStacktraceInformation: {}
managedStrippingLevel: managedStrippingLevel:
EmbeddedLinux: 1 EmbeddedLinux: 1
GameCoreScarlett: 1 GameCoreScarlett: 1
@ -833,6 +844,7 @@ PlayerSettings:
gcIncremental: 1 gcIncremental: 1
gcWBarrierValidation: 0 gcWBarrierValidation: 0
apiCompatibilityLevelPerPlatform: {} apiCompatibilityLevelPerPlatform: {}
editorAssembliesCompatibilityLevel: 2
m_RenderingPath: 1 m_RenderingPath: 1
m_MobileRenderingPath: 1 m_MobileRenderingPath: 1
metroPackageName: 2DBuiltInRenderer metroPackageName: 2DBuiltInRenderer
@ -907,9 +919,11 @@ PlayerSettings:
hmiPlayerDataPath: hmiPlayerDataPath:
hmiForceSRGBBlit: 1 hmiForceSRGBBlit: 1
embeddedLinuxEnableGamepadInput: 1 embeddedLinuxEnableGamepadInput: 1
hmiLogStartupTiming: 0
hmiCpuConfiguration: hmiCpuConfiguration:
apiCompatibilityLevel: 3 hmiLogStartupTiming: 0
qnxGraphicConfPath:
apiCompatibilityLevel: 6
captureStartupLogs: {}
activeInputHandler: 0 activeInputHandler: 0
windowsGamepadBackendHint: 0 windowsGamepadBackendHint: 0
cloudProjectId: 5fd5767a-af95-4147-a047-6025b4ab9d1e cloudProjectId: 5fd5767a-af95-4147-a047-6025b4ab9d1e
@ -923,3 +937,5 @@ PlayerSettings:
platformRequiresReadableAssets: 0 platformRequiresReadableAssets: 0
virtualTexturingSupportEnabled: 0 virtualTexturingSupportEnabled: 0
insecureHttpOption: 0 insecureHttpOption: 0
androidVulkanDenyFilterList: []
androidVulkanAllowFilterList: []

View File

@ -1,2 +1,2 @@
m_EditorVersion: 2022.3.55f1 m_EditorVersion: 6000.0.55f1
m_EditorVersionWithRevision: 2022.3.55f1 (9f374180d209) m_EditorVersionWithRevision: 6000.0.55f1 (c5f59906196d)