├── .gitattributes ├── .gitignore ├── Assets ├── HDRP.meta ├── HDRP │ ├── DefaultSettings.asset │ ├── DefaultSettings.asset.meta │ ├── GlobalSettings.asset │ ├── GlobalSettings.asset.meta │ ├── HDRP.asset │ └── HDRP.asset.meta ├── Main.unity ├── Main.unity.meta ├── Materials.meta ├── Materials │ ├── Meter.shadergraph │ ├── Meter.shadergraph.meta │ ├── Prefab.mat │ └── Prefab.mat.meta ├── Meshes.meta ├── Meshes │ ├── Arc.metamesh │ └── Arc.metamesh.meta ├── UI.meta ├── UI │ ├── DefaultTheme.tss │ ├── DefaultTheme.tss.meta │ ├── Inter_18pt-Thin.ttf │ ├── Inter_18pt-Thin.ttf.meta │ ├── PanelSettings.asset │ ├── PanelSettings.asset.meta │ ├── UI.uxml │ └── UI.uxml.meta ├── VFX.meta └── VFX │ ├── Arrow.png │ ├── Arrow.png.meta │ ├── Arrow.vfx │ ├── Arrow.vfx.meta │ ├── Clones.vfx │ ├── Clones.vfx.meta │ ├── Meter.vfx │ └── Meter.vfx.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_StandaloneLinux64.json ├── BurstAotSettings_StandaloneOSX.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── HDRPProjectSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── MultiplayerManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | 3 | *.cs text eol=lf diff=csharp 4 | *.shader text eol=lf 5 | *.cginc text eol=lf 6 | *.hlsl text eol=lf 7 | *.compute text eol=lf 8 | 9 | *.meta text eol=lf 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | Desktop.ini 3 | .DS_Store 4 | *.swp 5 | 6 | /Library 7 | /Logs 8 | /Recordings 9 | /Temp 10 | /UserSettings 11 | -------------------------------------------------------------------------------- /Assets/HDRP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 155c43ffea2cf43d0ad663e86aea339f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/HDRP/DefaultSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d6862ea79b8f54e8c9dbf9da49ffb550 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/HDRP/GlobalSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14014851a95f3429f9e102d09fa469ba 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/HDRP/HDRP.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 0cf1dab834d4ec34195b920ea7bbf9ec, type: 3} 13 | m_Name: HDRP 14 | m_EditorClassIdentifier: 15 | m_RenderPipelineSettings: 16 | supportShadowMask: 1 17 | supportSSR: 0 18 | supportSSRTransparent: 0 19 | supportSSAO: 1 20 | supportSSGI: 0 21 | supportSubsurfaceScattering: 1 22 | sssSampleBudget: 23 | m_Values: 140000002800000050000000 24 | m_SchemaId: 25 | m_Id: With3Levels 26 | sssDownsampleSteps: 27 | m_Values: 000000000000000000000000 28 | m_SchemaId: 29 | m_Id: With3Levels 30 | supportVolumetrics: 1 31 | supportVolumetricClouds: 0 32 | supportLightLayers: 0 33 | renderingLayerMaskBuffer: 0 34 | supportWater: 0 35 | waterSimulationResolution: 128 36 | supportWaterExclusion: 1 37 | supportWaterDecals: 1 38 | waterDecalAtlasSize: 1024 39 | maximumWaterDecalCount: 48 40 | waterScriptInteractionsMode: 0 41 | waterFullCPUSimulation: 0 42 | supportComputeThickness: 0 43 | computeThicknessResolution: 1 44 | computeThicknessLayerMask: 45 | serializedVersion: 2 46 | m_Bits: 0 47 | supportDistortion: 1 48 | supportTransparentBackface: 1 49 | supportTransparentDepthPrepass: 1 50 | supportTransparentDepthPostpass: 1 51 | colorBufferFormat: 74 52 | supportCustomPass: 1 53 | customBufferFormat: 8 54 | supportedLitShaderMode: 2 55 | planarReflectionResolution: 56 | m_Values: 000100000004000000080000 57 | m_SchemaId: 58 | m_Id: With3Levels 59 | cubeReflectionResolution: 60 | m_Values: 800000000001000000020000 61 | m_SchemaId: 62 | m_Id: With3Levels 63 | supportDecals: 1 64 | supportDecalLayers: 0 65 | supportSurfaceGradient: 1 66 | decalNormalBufferHP: 0 67 | supportHighQualityLineRendering: 0 68 | highQualityLineRenderingMemoryBudget: 128 69 | msaaSampleCount: 1 70 | supportMotionVectors: 1 71 | supportScreenSpaceLensFlare: 1 72 | supportDataDrivenLensFlare: 1 73 | supportDitheringCrossFade: 0 74 | supportRuntimeAOVAPI: 0 75 | supportTerrainHole: 0 76 | lightProbeSystem: 1 77 | oldLightProbeSystem: 0 78 | probeVolumeMemoryBudget: 1024 79 | supportProbeVolumeGPUStreaming: 0 80 | supportProbeVolumeDiskStreaming: 0 81 | probeVolumeSHBands: 1 82 | supportProbeVolumeScenarios: 0 83 | supportProbeVolumeScenarioBlending: 1 84 | probeVolumeBlendingMemoryBudget: 128 85 | supportRayTracing: 0 86 | supportVFXRayTracing: 0 87 | supportedRayTracingMode: 3 88 | lightLoopSettings: 89 | cookieAtlasSize: 2048 90 | cookieFormat: 74 91 | cookieAtlasLastValidMip: 0 92 | cookieTexArraySize: 1 93 | planarReflectionAtlasSize: 0 94 | reflectionProbeCacheSize: 0 95 | reflectionCubemapSize: 0 96 | maxEnvLightsOnScreen: 0 97 | reflectionCacheCompressed: 0 98 | reflectionProbeFormat: 74 99 | reflectionProbeTexCacheSize: 4096 100 | reflectionProbeTexLastValidCubeMip: 3 101 | reflectionProbeTexLastValidPlanarMip: 0 102 | reflectionProbeDecreaseResToFit: 1 103 | skyReflectionSize: 256 104 | skyLightingOverrideLayerMask: 105 | serializedVersion: 2 106 | m_Bits: 0 107 | supportFabricConvolution: 0 108 | maxDirectionalLightsOnScreen: 16 109 | maxPunctualLightsOnScreen: 512 110 | maxAreaLightsOnScreen: 64 111 | maxCubeReflectionOnScreen: 32 112 | maxPlanarReflectionOnScreen: 8 113 | maxDecalsOnScreen: 512 114 | maxLightsPerClusterCell: 8 115 | maxLocalVolumetricFogSize: 0 116 | maxLocalVolumetricFogOnScreen: 256 117 | hdShadowInitParams: 118 | maxShadowRequests: 128 119 | directionalShadowsDepthBits: 32 120 | punctualShadowFilteringQuality: 1 121 | directionalShadowFilteringQuality: 1 122 | areaShadowFilteringQuality: 0 123 | punctualLightShadowAtlas: 124 | shadowAtlasResolution: 4096 125 | shadowAtlasDepthBits: 32 126 | useDynamicViewportRescale: 1 127 | areaLightShadowAtlas: 128 | shadowAtlasResolution: 4096 129 | shadowAtlasDepthBits: 32 130 | useDynamicViewportRescale: 1 131 | cachedPunctualLightShadowAtlas: 2048 132 | cachedAreaLightShadowAtlas: 1024 133 | allowDirectionalMixedCachedShadows: 0 134 | shadowResolutionDirectional: 135 | m_Values: 00010000000200000004000000080000 136 | m_SchemaId: 137 | m_Id: With4Levels 138 | shadowResolutionPunctual: 139 | m_Values: 00010000000200000004000000080000 140 | m_SchemaId: 141 | m_Id: With4Levels 142 | shadowResolutionArea: 143 | m_Values: 00010000000200000004000000080000 144 | m_SchemaId: 145 | m_Id: With4Levels 146 | maxDirectionalShadowMapResolution: 2048 147 | maxPunctualShadowMapResolution: 2048 148 | maxAreaShadowMapResolution: 2048 149 | supportScreenSpaceShadows: 0 150 | maxScreenSpaceShadowSlots: 4 151 | screenSpaceShadowBufferFormat: 48 152 | decalSettings: 153 | drawDistance: 1000 154 | atlasWidth: 4096 155 | atlasHeight: 4096 156 | transparentTextureResolution: 157 | m_Values: 000100000002000000040000 158 | m_SchemaId: 159 | m_Id: With3Levels 160 | perChannelMask: 0 161 | postProcessSettings: 162 | m_LutSize: 32 163 | lutFormat: 48 164 | bufferFormat: 74 165 | dynamicResolutionSettings: 166 | enabled: 0 167 | useMipBias: 0 168 | advancedUpscalersByPriority: 169 | DLSSPerfQualitySetting: 0 170 | DLSSInjectionPoint: 0 171 | TAAUInjectionPoint: 0 172 | STPInjectionPoint: 0 173 | defaultInjectionPoint: 2 174 | DLSSUseOptimalSettings: 1 175 | DLSSSharpness: 0.5 176 | FSR2EnableSharpness: 0 177 | FSR2Sharpness: 0 178 | FSR2UseOptimalSettings: 0 179 | FSR2QualitySetting: 0 180 | FSR2InjectionPoint: 0 181 | fsrOverrideSharpness: 0 182 | fsrSharpness: 0.92 183 | maxPercentage: 100 184 | minPercentage: 100 185 | dynResType: 1 186 | upsampleFilter: 1 187 | forceResolution: 0 188 | forcedPercentage: 100 189 | lowResTransparencyMinimumThreshold: 0 190 | rayTracingHalfResThreshold: 50 191 | lowResSSGIMinimumThreshold: 0 192 | lowResVolumetricCloudsMinimumThreshold: 50 193 | enableDLSS: 0 194 | lowresTransparentSettings: 195 | enabled: 1 196 | checkerboardDepthBuffer: 1 197 | upsampleType: 1 198 | xrSettings: 199 | singlePass: 1 200 | occlusionMesh: 1 201 | cameraJitter: 0 202 | allowMotionBlur: 0 203 | postProcessQualitySettings: 204 | NearBlurSampleCount: 030000000500000008000000 205 | NearBlurMaxRadius: 206 | - 2 207 | - 4 208 | - 7 209 | FarBlurSampleCount: 04000000070000000e000000 210 | FarBlurMaxRadius: 211 | - 5 212 | - 8 213 | - 13 214 | DoFResolution: 040000000200000001000000 215 | DoFHighQualityFiltering: 000101 216 | DoFPhysicallyBased: 000000 217 | LimitManualRangeNearBlur: 000000 218 | MotionBlurSampleCount: 04000000080000000c000000 219 | BloomRes: 040000000200000002000000 220 | BloomHighQualityFiltering: 000101 221 | BloomHighQualityPrefiltering: 000001 222 | ChromaticAberrationMaxSamples: 03000000060000000c000000 223 | lightSettings: 224 | useContactShadow: 225 | m_Values: 000001 226 | m_SchemaId: 227 | m_Id: With3Levels 228 | maximumLODLevel: 229 | m_Values: 000000000000000000000000 230 | m_SchemaId: 231 | m_Id: With3Levels 232 | lodBias: 233 | m_Values: 234 | - 1 235 | - 1 236 | - 1 237 | m_SchemaId: 238 | m_Id: With3Levels 239 | lightingQualitySettings: 240 | AOStepCount: 040000000600000010000000 241 | AOFullRes: 000001 242 | AOMaximumRadiusPixels: 200000002800000050000000 243 | AOBilateralUpsample: 000101 244 | AODirectionCount: 010000000200000004000000 245 | ContactShadowSampleCount: 060000000a00000010000000 246 | SSRMaxRaySteps: 100000002000000040000000 247 | SSGIRaySteps: 200000004000000080000000 248 | SSGIDenoise: 010101 249 | SSGIHalfResDenoise: 010000 250 | SSGIDenoiserRadius: 251 | - 0.75 252 | - 0.5 253 | - 0.5 254 | SSGISecondDenoise: 010101 255 | RTAORayLength: 256 | - 0.5 257 | - 3 258 | - 20 259 | RTAOSampleCount: 010000000200000008000000 260 | RTAODenoise: 010101 261 | RTAODenoiserRadius: 262 | - 0.25 263 | - 0.5 264 | - 0.65 265 | RTGIRayLength: 266 | - 50 267 | - 50 268 | - 50 269 | RTGIFullResolution: 000001 270 | RTGIRaySteps: 200000003000000040000000 271 | RTGIDenoise: 010101 272 | RTGIHalfResDenoise: 010000 273 | RTGIDenoiserRadius: 274 | - 1 275 | - 1 276 | - 1 277 | RTGISecondDenoise: 010101 278 | RTRMinSmoothness: 279 | - 0.6 280 | - 0.4 281 | - 0 282 | RTRSmoothnessFadeStart: 283 | - 0.7 284 | - 0.5 285 | - 0 286 | RTRRayLength: 287 | - 50 288 | - 50 289 | - 50 290 | RTRFullResolution: 000001 291 | RTRRayMaxIterations: 200000003000000040000000 292 | RTRDenoise: 010101 293 | RTRDenoiserRadiusDimmer: 294 | - 0.75 295 | - 0.75 296 | - 1 297 | RTRDenoiserAntiFlicker: 298 | - 1 299 | - 1 300 | - 1 301 | Fog_ControlMode: 000000000000000000000000 302 | Fog_Budget: 303 | - 0.166 304 | - 0.33 305 | - 0.666 306 | Fog_DepthRatio: 307 | - 0.666 308 | - 0.666 309 | - 0.5 310 | gpuResidentDrawerSettings: 311 | mode: 0 312 | smallMeshScreenPercentage: 0 313 | enableOcclusionCullingInCameras: 0 314 | useDepthPrepassForOccluders: 1 315 | m_ObsoleteLightLayerName0: 316 | m_ObsoleteLightLayerName1: 317 | m_ObsoleteLightLayerName2: 318 | m_ObsoleteLightLayerName3: 319 | m_ObsoleteLightLayerName4: 320 | m_ObsoleteLightLayerName5: 321 | m_ObsoleteLightLayerName6: 322 | m_ObsoleteLightLayerName7: 323 | m_ObsoleteDecalLayerName0: 324 | m_ObsoleteDecalLayerName1: 325 | m_ObsoleteDecalLayerName2: 326 | m_ObsoleteDecalLayerName3: 327 | m_ObsoleteDecalLayerName4: 328 | m_ObsoleteDecalLayerName5: 329 | m_ObsoleteDecalLayerName6: 330 | m_ObsoleteDecalLayerName7: 331 | m_ObsoleteSupportRuntimeDebugDisplay: 0 332 | allowShaderVariantStripping: 1 333 | enableSRPBatcher: 1 334 | availableMaterialQualityLevels: -1 335 | m_DefaultMaterialQualityLevel: 4 336 | diffusionProfileSettings: {fileID: 0} 337 | m_VolumeProfile: {fileID: 0} 338 | virtualTexturingSettings: 339 | streamingCpuCacheSizeInMegaBytes: 256 340 | streamingMipPreloadTexturesPerFrame: 0 341 | streamingPreloadMipCount: 1 342 | streamingGpuCacheSettings: 343 | - format: 0 344 | sizeInMegaBytes: 128 345 | m_UseRenderGraph: 1 346 | m_CompositorCustomVolumeComponentsList: 347 | m_InjectionPoint: 1 348 | m_CustomPostProcessTypesAsString: [] 349 | m_Version: 25 350 | m_ObsoleteFrameSettings: 351 | overrides: 0 352 | enableShadow: 0 353 | enableContactShadows: 0 354 | enableShadowMask: 0 355 | enableSSR: 0 356 | enableSSAO: 0 357 | enableSubsurfaceScattering: 0 358 | enableTransmission: 0 359 | enableAtmosphericScattering: 0 360 | enableVolumetrics: 0 361 | enableReprojectionForVolumetrics: 0 362 | enableLightLayers: 0 363 | enableExposureControl: 1 364 | diffuseGlobalDimmer: 0 365 | specularGlobalDimmer: 0 366 | shaderLitMode: 0 367 | enableDepthPrepassWithDeferredRendering: 0 368 | enableTransparentPrepass: 0 369 | enableMotionVectors: 0 370 | enableObjectMotionVectors: 0 371 | enableDecals: 0 372 | enableRoughRefraction: 0 373 | enableTransparentPostpass: 0 374 | enableDistortion: 0 375 | enablePostprocess: 0 376 | enableOpaqueObjects: 0 377 | enableTransparentObjects: 0 378 | enableRealtimePlanarReflection: 0 379 | enableMSAA: 0 380 | enableAsyncCompute: 0 381 | runLightListAsync: 0 382 | runSSRAsync: 0 383 | runSSAOAsync: 0 384 | runContactShadowsAsync: 0 385 | runVolumeVoxelizationAsync: 0 386 | lightLoopSettings: 387 | overrides: 0 388 | enableDeferredTileAndCluster: 0 389 | enableComputeLightEvaluation: 0 390 | enableComputeLightVariants: 0 391 | enableComputeMaterialVariants: 0 392 | enableFptlForForwardOpaque: 0 393 | enableBigTilePrepass: 0 394 | isFptlEnabled: 0 395 | m_ObsoleteBakedOrCustomReflectionFrameSettings: 396 | overrides: 0 397 | enableShadow: 0 398 | enableContactShadows: 0 399 | enableShadowMask: 0 400 | enableSSR: 0 401 | enableSSAO: 0 402 | enableSubsurfaceScattering: 0 403 | enableTransmission: 0 404 | enableAtmosphericScattering: 0 405 | enableVolumetrics: 0 406 | enableReprojectionForVolumetrics: 0 407 | enableLightLayers: 0 408 | enableExposureControl: 1 409 | diffuseGlobalDimmer: 0 410 | specularGlobalDimmer: 0 411 | shaderLitMode: 0 412 | enableDepthPrepassWithDeferredRendering: 0 413 | enableTransparentPrepass: 0 414 | enableMotionVectors: 0 415 | enableObjectMotionVectors: 0 416 | enableDecals: 0 417 | enableRoughRefraction: 0 418 | enableTransparentPostpass: 0 419 | enableDistortion: 0 420 | enablePostprocess: 0 421 | enableOpaqueObjects: 0 422 | enableTransparentObjects: 0 423 | enableRealtimePlanarReflection: 0 424 | enableMSAA: 0 425 | enableAsyncCompute: 0 426 | runLightListAsync: 0 427 | runSSRAsync: 0 428 | runSSAOAsync: 0 429 | runContactShadowsAsync: 0 430 | runVolumeVoxelizationAsync: 0 431 | lightLoopSettings: 432 | overrides: 0 433 | enableDeferredTileAndCluster: 0 434 | enableComputeLightEvaluation: 0 435 | enableComputeLightVariants: 0 436 | enableComputeMaterialVariants: 0 437 | enableFptlForForwardOpaque: 0 438 | enableBigTilePrepass: 0 439 | isFptlEnabled: 0 440 | m_ObsoleteRealtimeReflectionFrameSettings: 441 | overrides: 0 442 | enableShadow: 0 443 | enableContactShadows: 0 444 | enableShadowMask: 0 445 | enableSSR: 0 446 | enableSSAO: 0 447 | enableSubsurfaceScattering: 0 448 | enableTransmission: 0 449 | enableAtmosphericScattering: 0 450 | enableVolumetrics: 0 451 | enableReprojectionForVolumetrics: 0 452 | enableLightLayers: 0 453 | enableExposureControl: 1 454 | diffuseGlobalDimmer: 0 455 | specularGlobalDimmer: 0 456 | shaderLitMode: 0 457 | enableDepthPrepassWithDeferredRendering: 0 458 | enableTransparentPrepass: 0 459 | enableMotionVectors: 0 460 | enableObjectMotionVectors: 0 461 | enableDecals: 0 462 | enableRoughRefraction: 0 463 | enableTransparentPostpass: 0 464 | enableDistortion: 0 465 | enablePostprocess: 0 466 | enableOpaqueObjects: 0 467 | enableTransparentObjects: 0 468 | enableRealtimePlanarReflection: 0 469 | enableMSAA: 0 470 | enableAsyncCompute: 0 471 | runLightListAsync: 0 472 | runSSRAsync: 0 473 | runSSAOAsync: 0 474 | runContactShadowsAsync: 0 475 | runVolumeVoxelizationAsync: 0 476 | lightLoopSettings: 477 | overrides: 0 478 | enableDeferredTileAndCluster: 0 479 | enableComputeLightEvaluation: 0 480 | enableComputeLightVariants: 0 481 | enableComputeMaterialVariants: 0 482 | enableFptlForForwardOpaque: 0 483 | enableBigTilePrepass: 0 484 | isFptlEnabled: 0 485 | m_ObsoleteDefaultVolumeProfile: {fileID: 0} 486 | m_ObsoleteDefaultLookDevProfile: {fileID: 0} 487 | m_ObsoleteFrameSettingsMovedToDefaultSettings: 488 | bitDatas: 489 | data1: 0 490 | data2: 0 491 | lodBias: 0 492 | lodBiasMode: 0 493 | lodBiasQualityLevel: 0 494 | maximumLODLevel: 0 495 | maximumLODLevelMode: 0 496 | maximumLODLevelQualityLevel: 0 497 | sssQualityMode: 0 498 | sssQualityLevel: 0 499 | sssCustomSampleBudget: 0 500 | sssCustomDownsampleSteps: 0 501 | msaaMode: 0 502 | materialQuality: 0 503 | m_ObsoleteBakedOrCustomReflectionFrameSettingsMovedToDefaultSettings: 504 | bitDatas: 505 | data1: 0 506 | data2: 0 507 | lodBias: 0 508 | lodBiasMode: 0 509 | lodBiasQualityLevel: 0 510 | maximumLODLevel: 0 511 | maximumLODLevelMode: 0 512 | maximumLODLevelQualityLevel: 0 513 | sssQualityMode: 0 514 | sssQualityLevel: 0 515 | sssCustomSampleBudget: 0 516 | sssCustomDownsampleSteps: 0 517 | msaaMode: 0 518 | materialQuality: 0 519 | m_ObsoleteRealtimeReflectionFrameSettingsMovedToDefaultSettings: 520 | bitDatas: 521 | data1: 0 522 | data2: 0 523 | lodBias: 0 524 | lodBiasMode: 0 525 | lodBiasQualityLevel: 0 526 | maximumLODLevel: 0 527 | maximumLODLevelMode: 0 528 | maximumLODLevelQualityLevel: 0 529 | sssQualityMode: 0 530 | sssQualityLevel: 0 531 | sssCustomSampleBudget: 0 532 | sssCustomDownsampleSteps: 0 533 | msaaMode: 0 534 | materialQuality: 0 535 | m_ObsoleteBeforeTransparentCustomPostProcesses: [] 536 | m_ObsoleteBeforePostProcessCustomPostProcesses: [] 537 | m_ObsoleteAfterPostProcessCustomPostProcesses: [] 538 | m_ObsoleteBeforeTAACustomPostProcesses: [] 539 | m_ObsoleteShaderVariantLogLevel: 0 540 | m_ObsoleteLensAttenuation: 0 541 | m_ObsoleteDiffusionProfileSettingsList: [] 542 | m_PrefilterUseLegacyLightmaps: 0 543 | -------------------------------------------------------------------------------- /Assets/HDRP/HDRP.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a987492a7ad17494f9346b6ef3088485 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Main.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 10 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 0} 41 | m_UseRadianceAmbientProbe: 0 42 | --- !u!157 &3 43 | LightmapSettings: 44 | m_ObjectHideFlags: 0 45 | serializedVersion: 13 46 | m_BakeOnSceneLoad: 0 47 | m_GISettings: 48 | serializedVersion: 2 49 | m_BounceScale: 1 50 | m_IndirectOutputScale: 1 51 | m_AlbedoBoost: 1 52 | m_EnvironmentLightingMode: 0 53 | m_EnableBakedLightmaps: 1 54 | m_EnableRealtimeLightmaps: 0 55 | m_LightmapEditorSettings: 56 | serializedVersion: 12 57 | m_Resolution: 2 58 | m_BakeResolution: 40 59 | m_AtlasSize: 1024 60 | m_AO: 0 61 | m_AOMaxDistance: 1 62 | m_CompAOExponent: 1 63 | m_CompAOExponentDirect: 0 64 | m_ExtractAmbientOcclusion: 0 65 | m_Padding: 2 66 | m_LightmapParameters: {fileID: 0} 67 | m_LightmapsBakeMode: 1 68 | m_TextureCompression: 1 69 | m_ReflectionCompression: 2 70 | m_MixedBakeMode: 2 71 | m_BakeBackend: 1 72 | m_PVRSampling: 1 73 | m_PVRDirectSampleCount: 32 74 | m_PVRSampleCount: 512 75 | m_PVRBounces: 2 76 | m_PVREnvironmentSampleCount: 256 77 | m_PVREnvironmentReferencePointCount: 2048 78 | m_PVRFilteringMode: 1 79 | m_PVRDenoiserTypeDirect: 1 80 | m_PVRDenoiserTypeIndirect: 1 81 | m_PVRDenoiserTypeAO: 1 82 | m_PVRFilterTypeDirect: 0 83 | m_PVRFilterTypeIndirect: 0 84 | m_PVRFilterTypeAO: 0 85 | m_PVREnvironmentMIS: 1 86 | m_PVRCulling: 1 87 | m_PVRFilteringGaussRadiusDirect: 1 88 | m_PVRFilteringGaussRadiusIndirect: 5 89 | m_PVRFilteringGaussRadiusAO: 2 90 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 91 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 92 | m_PVRFilteringAtrousPositionSigmaAO: 1 93 | m_ExportTrainingData: 0 94 | m_TrainingDataDestination: TrainingData 95 | m_LightProbeSampleCountMultiplier: 4 96 | m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} 97 | m_LightingSettings: {fileID: 0} 98 | --- !u!196 &4 99 | NavMeshSettings: 100 | serializedVersion: 2 101 | m_ObjectHideFlags: 0 102 | m_BuildSettings: 103 | serializedVersion: 3 104 | agentTypeID: 0 105 | agentRadius: 0.5 106 | agentHeight: 2 107 | agentSlope: 45 108 | agentClimb: 0.4 109 | ledgeDropHeight: 0 110 | maxJumpAcrossDistance: 0 111 | minRegionArea: 2 112 | manualCellSize: 0 113 | cellSize: 0.16666667 114 | manualTileSize: 0 115 | tileSize: 256 116 | buildHeightMesh: 0 117 | maxJobWorkers: 0 118 | preserveTilesOutsideBounds: 0 119 | debug: 120 | m_Flags: 0 121 | m_NavMeshData: {fileID: 0} 122 | --- !u!1 &219548318 123 | GameObject: 124 | m_ObjectHideFlags: 0 125 | m_CorrespondingSourceObject: {fileID: 0} 126 | m_PrefabInstance: {fileID: 0} 127 | m_PrefabAsset: {fileID: 0} 128 | serializedVersion: 6 129 | m_Component: 130 | - component: {fileID: 219548319} 131 | m_Layer: 0 132 | m_Name: Camera Pivot 133 | m_TagString: Untagged 134 | m_Icon: {fileID: 0} 135 | m_NavMeshLayer: 0 136 | m_StaticEditorFlags: 0 137 | m_IsActive: 1 138 | --- !u!4 &219548319 139 | Transform: 140 | m_ObjectHideFlags: 0 141 | m_CorrespondingSourceObject: {fileID: 0} 142 | m_PrefabInstance: {fileID: 0} 143 | m_PrefabAsset: {fileID: 0} 144 | m_GameObject: {fileID: 219548318} 145 | serializedVersion: 2 146 | m_LocalRotation: {x: 0.13052616, y: 0, z: 0, w: 0.9914449} 147 | m_LocalPosition: {x: 0, y: 0, z: 0} 148 | m_LocalScale: {x: 1, y: 1, z: 1} 149 | m_ConstrainProportionsScale: 0 150 | m_Children: 151 | - {fileID: 2116485669} 152 | m_Father: {fileID: 0} 153 | m_LocalEulerAnglesHint: {x: 15, y: 0, z: 0} 154 | --- !u!1 &471448866 155 | GameObject: 156 | m_ObjectHideFlags: 0 157 | m_CorrespondingSourceObject: {fileID: 0} 158 | m_PrefabInstance: {fileID: 0} 159 | m_PrefabAsset: {fileID: 0} 160 | serializedVersion: 6 161 | m_Component: 162 | - component: {fileID: 471448869} 163 | - component: {fileID: 471448868} 164 | - component: {fileID: 471448867} 165 | m_Layer: 0 166 | m_Name: Directional Light 167 | m_TagString: Untagged 168 | m_Icon: {fileID: 0} 169 | m_NavMeshLayer: 0 170 | m_StaticEditorFlags: 0 171 | m_IsActive: 1 172 | --- !u!114 &471448867 173 | MonoBehaviour: 174 | m_ObjectHideFlags: 0 175 | m_CorrespondingSourceObject: {fileID: 0} 176 | m_PrefabInstance: {fileID: 0} 177 | m_PrefabAsset: {fileID: 0} 178 | m_GameObject: {fileID: 471448866} 179 | m_Enabled: 1 180 | m_EditorHideFlags: 0 181 | m_Script: {fileID: 11500000, guid: 7a68c43fe1f2a47cfa234b5eeaa98012, type: 3} 182 | m_Name: 183 | m_EditorClassIdentifier: 184 | m_PointlightHDType: 0 185 | m_SpotLightShape: 0 186 | m_AreaLightShape: 0 187 | m_EnableSpotReflector: 1 188 | m_LightUnit: 0 189 | m_LuxAtDistance: 1 190 | m_Intensity: 0 191 | m_InnerSpotPercent: 0 192 | m_SpotIESCutoffPercent: 100 193 | m_LightDimmer: 1 194 | m_VolumetricDimmer: 1 195 | m_FadeDistance: 10000 196 | m_VolumetricFadeDistance: 10000 197 | m_AffectDiffuse: 1 198 | m_AffectSpecular: 1 199 | m_NonLightmappedOnly: 0 200 | m_ShapeWidth: 0.5 201 | m_ShapeHeight: 0.5 202 | m_AspectRatio: 1 203 | m_ShapeRadius: 0.025 204 | m_SoftnessScale: 1 205 | m_UseCustomSpotLightShadowCone: 0 206 | m_CustomSpotLightShadowCone: 30 207 | m_MaxSmoothness: 0.99 208 | m_ApplyRangeAttenuation: 1 209 | m_DisplayAreaLightEmissiveMesh: 0 210 | m_AreaLightCookie: {fileID: 0} 211 | m_IESPoint: {fileID: 0} 212 | m_IESSpot: {fileID: 0} 213 | m_IncludeForRayTracing: 1 214 | m_IncludeForPathTracing: 1 215 | m_AreaLightShadowCone: 120 216 | m_UseScreenSpaceShadows: 0 217 | m_InteractsWithSky: 1 218 | m_AngularDiameter: 0.5 219 | diameterMultiplerMode: 0 220 | diameterMultiplier: 1 221 | diameterOverride: 0.5 222 | celestialBodyShadingSource: 1 223 | sunLightOverride: {fileID: 0} 224 | sunColor: {r: 1, g: 1, b: 1, a: 1} 225 | sunIntensity: 130000 226 | moonPhase: 0.2 227 | moonPhaseRotation: 0 228 | earthshine: 1 229 | flareSize: 2 230 | flareTint: {r: 1, g: 1, b: 1, a: 1} 231 | flareFalloff: 4 232 | flareMultiplier: 1 233 | surfaceTexture: {fileID: 0} 234 | surfaceTint: {r: 1, g: 1, b: 1, a: 1} 235 | m_Distance: 1.5e+11 236 | m_UseRayTracedShadows: 0 237 | m_NumRayTracingSamples: 4 238 | m_FilterTracedShadow: 1 239 | m_FilterSizeTraced: 16 240 | m_SunLightConeAngle: 0.5 241 | m_LightShadowRadius: 0.5 242 | m_SemiTransparentShadow: 0 243 | m_ColorShadow: 1 244 | m_DistanceBasedFiltering: 0 245 | m_EvsmExponent: 15 246 | m_EvsmLightLeakBias: 0 247 | m_EvsmVarianceBias: 0.00001 248 | m_EvsmBlurPasses: 0 249 | m_LightlayersMask: 1 250 | m_LinkShadowLayers: 1 251 | m_ShadowNearPlane: 0.1 252 | m_BlockerSampleCount: 24 253 | m_FilterSampleCount: 16 254 | m_MinFilterSize: 0.1 255 | m_DirLightPCSSBlockerSampleCount: 24 256 | m_DirLightPCSSFilterSampleCount: 16 257 | m_DirLightPCSSMaxPenumbraSize: 0.56 258 | m_DirLightPCSSMaxSamplingDistance: 0.5 259 | m_DirLightPCSSMinFilterSizeTexels: 1.5 260 | m_DirLightPCSSMinFilterMaxAngularDiameter: 10 261 | m_DirLightPCSSBlockerSearchAngularDiameter: 12 262 | m_DirLightPCSSBlockerSamplingClumpExponent: 2 263 | m_KernelSize: 5 264 | m_LightAngle: 1 265 | m_MaxDepthBias: 0.001 266 | m_ShadowResolution: 267 | m_Override: 512 268 | m_UseOverride: 1 269 | m_Level: 0 270 | m_ShadowDimmer: 1 271 | m_VolumetricShadowDimmer: 1 272 | m_ShadowFadeDistance: 10000 273 | m_UseContactShadow: 274 | m_Override: 0 275 | m_UseOverride: 1 276 | m_Level: 0 277 | m_RayTracedContactShadow: 0 278 | m_ShadowTint: {r: 0, g: 0, b: 0, a: 1} 279 | m_PenumbraTint: 0 280 | m_NormalBias: 0.75 281 | m_SlopeBias: 0.5 282 | m_ShadowUpdateMode: 0 283 | m_AlwaysDrawDynamicShadows: 0 284 | m_UpdateShadowOnLightMovement: 0 285 | m_CachedShadowTranslationThreshold: 0.01 286 | m_CachedShadowAngularThreshold: 0.5 287 | m_BarnDoorAngle: 90 288 | m_BarnDoorLength: 0.05 289 | m_preserveCachedShadow: 0 290 | m_OnDemandShadowRenderOnPlacement: 1 291 | m_ShadowCascadeRatios: 292 | - 0.05 293 | - 0.2 294 | - 0.3 295 | m_ShadowCascadeBorders: 296 | - 0.2 297 | - 0.2 298 | - 0.2 299 | - 0.2 300 | m_ShadowAlgorithm: 0 301 | m_ShadowVariant: 0 302 | m_ShadowPrecision: 0 303 | useOldInspector: 0 304 | useVolumetric: 1 305 | featuresFoldout: 1 306 | m_AreaLightEmissiveMeshShadowCastingMode: 0 307 | m_AreaLightEmissiveMeshMotionVectorGenerationMode: 0 308 | m_AreaLightEmissiveMeshLayer: -1 309 | m_Version: 13 310 | m_ObsoleteShadowResolutionTier: 1 311 | m_ObsoleteUseShadowQualitySettings: 0 312 | m_ObsoleteCustomShadowResolution: 512 313 | m_ObsoleteContactShadows: 0 314 | --- !u!108 &471448868 315 | Light: 316 | m_ObjectHideFlags: 0 317 | m_CorrespondingSourceObject: {fileID: 0} 318 | m_PrefabInstance: {fileID: 0} 319 | m_PrefabAsset: {fileID: 0} 320 | m_GameObject: {fileID: 471448866} 321 | m_Enabled: 1 322 | serializedVersion: 11 323 | m_Type: 1 324 | m_Color: {r: 1, g: 1, b: 1, a: 1} 325 | m_Intensity: 60 326 | m_Range: 10 327 | m_SpotAngle: 30 328 | m_InnerSpotAngle: 21.80208 329 | m_CookieSize: 10 330 | m_Shadows: 331 | m_Type: 0 332 | m_Resolution: -1 333 | m_CustomResolution: -1 334 | m_Strength: 1 335 | m_Bias: 0.05 336 | m_NormalBias: 0.4 337 | m_NearPlane: 0.2 338 | m_CullingMatrixOverride: 339 | e00: 1 340 | e01: 0 341 | e02: 0 342 | e03: 0 343 | e10: 0 344 | e11: 1 345 | e12: 0 346 | e13: 0 347 | e20: 0 348 | e21: 0 349 | e22: 1 350 | e23: 0 351 | e30: 0 352 | e31: 0 353 | e32: 0 354 | e33: 1 355 | m_UseCullingMatrixOverride: 0 356 | m_Cookie: {fileID: 0} 357 | m_DrawHalo: 0 358 | m_Flare: {fileID: 0} 359 | m_RenderMode: 0 360 | m_CullingMask: 361 | serializedVersion: 2 362 | m_Bits: 4294967295 363 | m_RenderingLayerMask: 1 364 | m_Lightmapping: 4 365 | m_LightShadowCasterMode: 2 366 | m_AreaSize: {x: 0.5, y: 0.5} 367 | m_BounceIntensity: 1 368 | m_ColorTemperature: 6570 369 | m_UseColorTemperature: 1 370 | m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} 371 | m_UseBoundingSphereOverride: 0 372 | m_UseViewFrustumForShadowCasterCull: 1 373 | m_ForceVisible: 0 374 | m_ShadowRadius: 0 375 | m_ShadowAngle: 0 376 | m_LightUnit: 2 377 | m_LuxAtDistance: 1 378 | m_EnableSpotReflector: 1 379 | --- !u!4 &471448869 380 | Transform: 381 | m_ObjectHideFlags: 0 382 | m_CorrespondingSourceObject: {fileID: 0} 383 | m_PrefabInstance: {fileID: 0} 384 | m_PrefabAsset: {fileID: 0} 385 | m_GameObject: {fileID: 471448866} 386 | serializedVersion: 2 387 | m_LocalRotation: {x: 0.39044833, y: -0.34682897, z: 0.161729, w: 0.8373192} 388 | m_LocalPosition: {x: 0, y: 0, z: 0} 389 | m_LocalScale: {x: 1, y: 1, z: 1} 390 | m_ConstrainProportionsScale: 0 391 | m_Children: [] 392 | m_Father: {fileID: 0} 393 | m_LocalEulerAnglesHint: {x: 50, y: -45, z: 0} 394 | --- !u!1 &676789971 395 | GameObject: 396 | m_ObjectHideFlags: 0 397 | m_CorrespondingSourceObject: {fileID: 0} 398 | m_PrefabInstance: {fileID: 0} 399 | m_PrefabAsset: {fileID: 0} 400 | serializedVersion: 6 401 | m_Component: 402 | - component: {fileID: 676789974} 403 | - component: {fileID: 676789973} 404 | - component: {fileID: 676789972} 405 | m_Layer: 0 406 | m_Name: Arrow 407 | m_TagString: Untagged 408 | m_Icon: {fileID: 0} 409 | m_NavMeshLayer: 0 410 | m_StaticEditorFlags: 0 411 | m_IsActive: 1 412 | --- !u!73398921 &676789972 413 | VFXRenderer: 414 | serializedVersion: 1 415 | m_ObjectHideFlags: 2 416 | m_CorrespondingSourceObject: {fileID: 0} 417 | m_PrefabInstance: {fileID: 0} 418 | m_PrefabAsset: {fileID: 0} 419 | m_GameObject: {fileID: 676789971} 420 | m_Enabled: 1 421 | m_CastShadows: 0 422 | m_ReceiveShadows: 0 423 | m_DynamicOccludee: 1 424 | m_StaticShadowCaster: 0 425 | m_MotionVectors: 0 426 | m_LightProbeUsage: 0 427 | m_ReflectionProbeUsage: 0 428 | m_RayTracingMode: 0 429 | m_RayTraceProcedural: 0 430 | m_RayTracingAccelStructBuildFlagsOverride: 0 431 | m_RayTracingAccelStructBuildFlags: 1 432 | m_SmallMeshCulling: 1 433 | m_RenderingLayerMask: 1 434 | m_RendererPriority: 0 435 | m_StaticBatchInfo: 436 | firstSubMesh: 0 437 | subMeshCount: 0 438 | m_StaticBatchRoot: {fileID: 0} 439 | m_ProbeAnchor: {fileID: 0} 440 | m_LightProbeVolumeOverride: {fileID: 0} 441 | m_ScaleInLightmap: 1 442 | m_ReceiveGI: 1 443 | m_PreserveUVs: 0 444 | m_IgnoreNormalsForChartDetection: 0 445 | m_ImportantGI: 0 446 | m_StitchLightmapSeams: 1 447 | m_SelectedEditorRenderState: 3 448 | m_MinimumChartSize: 4 449 | m_AutoUVMaxDistance: 0.5 450 | m_AutoUVMaxAngle: 89 451 | m_LightmapParameters: {fileID: 0} 452 | m_SortingLayerID: 0 453 | m_SortingLayer: 0 454 | m_SortingOrder: 0 455 | --- !u!2083052967 &676789973 456 | VisualEffect: 457 | m_ObjectHideFlags: 0 458 | m_CorrespondingSourceObject: {fileID: 0} 459 | m_PrefabInstance: {fileID: 0} 460 | m_PrefabAsset: {fileID: 0} 461 | m_GameObject: {fileID: 676789971} 462 | m_Enabled: 1 463 | m_Asset: {fileID: 8926484042661614526, guid: 4debefc58705f47468508cbbc68cce49, type: 3} 464 | m_InitialEventName: OnPlay 465 | m_InitialEventNameOverriden: 0 466 | m_StartSeed: 0 467 | m_ResetSeedOnPlay: 1 468 | m_AllowInstancing: 1 469 | m_ResourceVersion: 1 470 | m_PropertySheet: 471 | m_Float: 472 | m_Array: [] 473 | m_Vector2f: 474 | m_Array: [] 475 | m_Vector3f: 476 | m_Array: [] 477 | m_Vector4f: 478 | m_Array: [] 479 | m_Uint: 480 | m_Array: [] 481 | m_Int: 482 | m_Array: [] 483 | m_Matrix4x4f: 484 | m_Array: [] 485 | m_AnimationCurve: 486 | m_Array: [] 487 | m_Gradient: 488 | m_Array: [] 489 | m_NamedObject: 490 | m_Array: [] 491 | m_Bool: 492 | m_Array: [] 493 | --- !u!4 &676789974 494 | Transform: 495 | m_ObjectHideFlags: 0 496 | m_CorrespondingSourceObject: {fileID: 0} 497 | m_PrefabInstance: {fileID: 0} 498 | m_PrefabAsset: {fileID: 0} 499 | m_GameObject: {fileID: 676789971} 500 | serializedVersion: 2 501 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 502 | m_LocalPosition: {x: -0.48, y: 0.5, z: 0} 503 | m_LocalScale: {x: 1, y: 1, z: 1} 504 | m_ConstrainProportionsScale: 0 505 | m_Children: [] 506 | m_Father: {fileID: 0} 507 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 508 | --- !u!1 &688970486 509 | GameObject: 510 | m_ObjectHideFlags: 0 511 | m_CorrespondingSourceObject: {fileID: 0} 512 | m_PrefabInstance: {fileID: 0} 513 | m_PrefabAsset: {fileID: 0} 514 | serializedVersion: 6 515 | m_Component: 516 | - component: {fileID: 688970489} 517 | - component: {fileID: 688970488} 518 | - component: {fileID: 688970487} 519 | m_Layer: 0 520 | m_Name: Prefab 521 | m_TagString: Untagged 522 | m_Icon: {fileID: 0} 523 | m_NavMeshLayer: 0 524 | m_StaticEditorFlags: 0 525 | m_IsActive: 1 526 | --- !u!23 &688970487 527 | MeshRenderer: 528 | m_ObjectHideFlags: 0 529 | m_CorrespondingSourceObject: {fileID: 0} 530 | m_PrefabInstance: {fileID: 0} 531 | m_PrefabAsset: {fileID: 0} 532 | m_GameObject: {fileID: 688970486} 533 | m_Enabled: 1 534 | m_CastShadows: 1 535 | m_ReceiveShadows: 1 536 | m_DynamicOccludee: 1 537 | m_StaticShadowCaster: 0 538 | m_MotionVectors: 1 539 | m_LightProbeUsage: 1 540 | m_ReflectionProbeUsage: 1 541 | m_RayTracingMode: 2 542 | m_RayTraceProcedural: 0 543 | m_RayTracingAccelStructBuildFlagsOverride: 0 544 | m_RayTracingAccelStructBuildFlags: 1 545 | m_SmallMeshCulling: 1 546 | m_RenderingLayerMask: 1 547 | m_RendererPriority: 0 548 | m_Materials: 549 | - {fileID: 2100000, guid: fc83fce2c92394527909ba8b869794a2, type: 2} 550 | m_StaticBatchInfo: 551 | firstSubMesh: 0 552 | subMeshCount: 0 553 | m_StaticBatchRoot: {fileID: 0} 554 | m_ProbeAnchor: {fileID: 0} 555 | m_LightProbeVolumeOverride: {fileID: 0} 556 | m_ScaleInLightmap: 1 557 | m_ReceiveGI: 1 558 | m_PreserveUVs: 0 559 | m_IgnoreNormalsForChartDetection: 0 560 | m_ImportantGI: 0 561 | m_StitchLightmapSeams: 1 562 | m_SelectedEditorRenderState: 3 563 | m_MinimumChartSize: 4 564 | m_AutoUVMaxDistance: 0.5 565 | m_AutoUVMaxAngle: 89 566 | m_LightmapParameters: {fileID: 0} 567 | m_SortingLayerID: 0 568 | m_SortingLayer: 0 569 | m_SortingOrder: 0 570 | m_AdditionalVertexStreams: {fileID: 0} 571 | --- !u!33 &688970488 572 | MeshFilter: 573 | m_ObjectHideFlags: 0 574 | m_CorrespondingSourceObject: {fileID: 0} 575 | m_PrefabInstance: {fileID: 0} 576 | m_PrefabAsset: {fileID: 0} 577 | m_GameObject: {fileID: 688970486} 578 | m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} 579 | --- !u!4 &688970489 580 | Transform: 581 | m_ObjectHideFlags: 0 582 | m_CorrespondingSourceObject: {fileID: 0} 583 | m_PrefabInstance: {fileID: 0} 584 | m_PrefabAsset: {fileID: 0} 585 | m_GameObject: {fileID: 688970486} 586 | serializedVersion: 2 587 | m_LocalRotation: {x: 0, y: 0.2840153, z: 0, w: 0.95881975} 588 | m_LocalPosition: {x: -0.675, y: 0.5, z: 0} 589 | m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} 590 | m_ConstrainProportionsScale: 1 591 | m_Children: [] 592 | m_Father: {fileID: 0} 593 | m_LocalEulerAnglesHint: {x: 0, y: 33, z: 0} 594 | --- !u!1 &1000558575 595 | GameObject: 596 | m_ObjectHideFlags: 0 597 | m_CorrespondingSourceObject: {fileID: 0} 598 | m_PrefabInstance: {fileID: 0} 599 | m_PrefabAsset: {fileID: 0} 600 | serializedVersion: 6 601 | m_Component: 602 | - component: {fileID: 1000558577} 603 | - component: {fileID: 1000558576} 604 | m_Layer: 5 605 | m_Name: UI 606 | m_TagString: Untagged 607 | m_Icon: {fileID: 0} 608 | m_NavMeshLayer: 0 609 | m_StaticEditorFlags: 0 610 | m_IsActive: 1 611 | --- !u!114 &1000558576 612 | MonoBehaviour: 613 | m_ObjectHideFlags: 0 614 | m_CorrespondingSourceObject: {fileID: 0} 615 | m_PrefabInstance: {fileID: 0} 616 | m_PrefabAsset: {fileID: 0} 617 | m_GameObject: {fileID: 1000558575} 618 | m_Enabled: 1 619 | m_EditorHideFlags: 0 620 | m_Script: {fileID: 19102, guid: 0000000000000000e000000000000000, type: 0} 621 | m_Name: 622 | m_EditorClassIdentifier: 623 | m_PanelSettings: {fileID: 11400000, guid: 3f58954092c8d48349c784e266a23a57, type: 2} 624 | m_ParentUI: {fileID: 0} 625 | sourceAsset: {fileID: 9197481963319205126, guid: 196627ec343744091ad1be66d4706078, type: 3} 626 | m_SortingOrder: 0 627 | m_WorldSpaceSizeMode: 1 628 | m_WorldSpaceWidth: 1920 629 | m_WorldSpaceHeight: 1080 630 | --- !u!4 &1000558577 631 | Transform: 632 | m_ObjectHideFlags: 0 633 | m_CorrespondingSourceObject: {fileID: 0} 634 | m_PrefabInstance: {fileID: 0} 635 | m_PrefabAsset: {fileID: 0} 636 | m_GameObject: {fileID: 1000558575} 637 | serializedVersion: 2 638 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 639 | m_LocalPosition: {x: 0, y: 0, z: 0} 640 | m_LocalScale: {x: 1, y: 1, z: 1} 641 | m_ConstrainProportionsScale: 0 642 | m_Children: [] 643 | m_Father: {fileID: 0} 644 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 645 | --- !u!1 &1405731853 646 | GameObject: 647 | m_ObjectHideFlags: 0 648 | m_CorrespondingSourceObject: {fileID: 0} 649 | m_PrefabInstance: {fileID: 0} 650 | m_PrefabAsset: {fileID: 0} 651 | serializedVersion: 6 652 | m_Component: 653 | - component: {fileID: 1405731856} 654 | - component: {fileID: 1405731855} 655 | - component: {fileID: 1405731854} 656 | m_Layer: 0 657 | m_Name: Meter 658 | m_TagString: Untagged 659 | m_Icon: {fileID: 0} 660 | m_NavMeshLayer: 0 661 | m_StaticEditorFlags: 0 662 | m_IsActive: 1 663 | --- !u!73398921 &1405731854 664 | VFXRenderer: 665 | serializedVersion: 1 666 | m_ObjectHideFlags: 2 667 | m_CorrespondingSourceObject: {fileID: 0} 668 | m_PrefabInstance: {fileID: 0} 669 | m_PrefabAsset: {fileID: 0} 670 | m_GameObject: {fileID: 1405731853} 671 | m_Enabled: 1 672 | m_CastShadows: 0 673 | m_ReceiveShadows: 0 674 | m_DynamicOccludee: 1 675 | m_StaticShadowCaster: 0 676 | m_MotionVectors: 0 677 | m_LightProbeUsage: 0 678 | m_ReflectionProbeUsage: 0 679 | m_RayTracingMode: 0 680 | m_RayTraceProcedural: 0 681 | m_RayTracingAccelStructBuildFlagsOverride: 0 682 | m_RayTracingAccelStructBuildFlags: 1 683 | m_SmallMeshCulling: 1 684 | m_RenderingLayerMask: 1 685 | m_RendererPriority: 0 686 | m_StaticBatchInfo: 687 | firstSubMesh: 0 688 | subMeshCount: 0 689 | m_StaticBatchRoot: {fileID: 0} 690 | m_ProbeAnchor: {fileID: 0} 691 | m_LightProbeVolumeOverride: {fileID: 0} 692 | m_ScaleInLightmap: 1 693 | m_ReceiveGI: 1 694 | m_PreserveUVs: 0 695 | m_IgnoreNormalsForChartDetection: 0 696 | m_ImportantGI: 0 697 | m_StitchLightmapSeams: 1 698 | m_SelectedEditorRenderState: 3 699 | m_MinimumChartSize: 4 700 | m_AutoUVMaxDistance: 0.5 701 | m_AutoUVMaxAngle: 89 702 | m_LightmapParameters: {fileID: 0} 703 | m_SortingLayerID: 0 704 | m_SortingLayer: 0 705 | m_SortingOrder: 0 706 | --- !u!2083052967 &1405731855 707 | VisualEffect: 708 | m_ObjectHideFlags: 0 709 | m_CorrespondingSourceObject: {fileID: 0} 710 | m_PrefabInstance: {fileID: 0} 711 | m_PrefabAsset: {fileID: 0} 712 | m_GameObject: {fileID: 1405731853} 713 | m_Enabled: 1 714 | m_Asset: {fileID: 8926484042661614526, guid: 4c664148dc237422f816786a663c63c3, type: 3} 715 | m_InitialEventName: OnPlay 716 | m_InitialEventNameOverriden: 0 717 | m_StartSeed: 0 718 | m_ResetSeedOnPlay: 1 719 | m_AllowInstancing: 1 720 | m_ResourceVersion: 1 721 | m_PropertySheet: 722 | m_Float: 723 | m_Array: [] 724 | m_Vector2f: 725 | m_Array: [] 726 | m_Vector3f: 727 | m_Array: [] 728 | m_Vector4f: 729 | m_Array: [] 730 | m_Uint: 731 | m_Array: [] 732 | m_Int: 733 | m_Array: [] 734 | m_Matrix4x4f: 735 | m_Array: [] 736 | m_AnimationCurve: 737 | m_Array: [] 738 | m_Gradient: 739 | m_Array: [] 740 | m_NamedObject: 741 | m_Array: [] 742 | m_Bool: 743 | m_Array: 744 | - m_Value: 1 745 | m_Name: Async 746 | m_Overridden: 1 747 | --- !u!4 &1405731856 748 | Transform: 749 | m_ObjectHideFlags: 0 750 | m_CorrespondingSourceObject: {fileID: 0} 751 | m_PrefabInstance: {fileID: 0} 752 | m_PrefabAsset: {fileID: 0} 753 | m_GameObject: {fileID: 1405731853} 754 | serializedVersion: 2 755 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 756 | m_LocalPosition: {x: -0.333333, y: 0, z: 0} 757 | m_LocalScale: {x: 1, y: 1, z: 1} 758 | m_ConstrainProportionsScale: 0 759 | m_Children: [] 760 | m_Father: {fileID: 0} 761 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 762 | --- !u!1 &1791087878 763 | GameObject: 764 | m_ObjectHideFlags: 0 765 | m_CorrespondingSourceObject: {fileID: 0} 766 | m_PrefabInstance: {fileID: 0} 767 | m_PrefabAsset: {fileID: 0} 768 | serializedVersion: 6 769 | m_Component: 770 | - component: {fileID: 1791087881} 771 | - component: {fileID: 1791087880} 772 | - component: {fileID: 1791087879} 773 | m_Layer: 0 774 | m_Name: Clones 775 | m_TagString: Untagged 776 | m_Icon: {fileID: 0} 777 | m_NavMeshLayer: 0 778 | m_StaticEditorFlags: 0 779 | m_IsActive: 1 780 | --- !u!73398921 &1791087879 781 | VFXRenderer: 782 | serializedVersion: 1 783 | m_ObjectHideFlags: 2 784 | m_CorrespondingSourceObject: {fileID: 0} 785 | m_PrefabInstance: {fileID: 0} 786 | m_PrefabAsset: {fileID: 0} 787 | m_GameObject: {fileID: 1791087878} 788 | m_Enabled: 1 789 | m_CastShadows: 0 790 | m_ReceiveShadows: 0 791 | m_DynamicOccludee: 1 792 | m_StaticShadowCaster: 0 793 | m_MotionVectors: 0 794 | m_LightProbeUsage: 0 795 | m_ReflectionProbeUsage: 0 796 | m_RayTracingMode: 0 797 | m_RayTraceProcedural: 0 798 | m_RayTracingAccelStructBuildFlagsOverride: 0 799 | m_RayTracingAccelStructBuildFlags: 1 800 | m_SmallMeshCulling: 1 801 | m_RenderingLayerMask: 1 802 | m_RendererPriority: 0 803 | m_StaticBatchInfo: 804 | firstSubMesh: 0 805 | subMeshCount: 0 806 | m_StaticBatchRoot: {fileID: 0} 807 | m_ProbeAnchor: {fileID: 0} 808 | m_LightProbeVolumeOverride: {fileID: 0} 809 | m_ScaleInLightmap: 1 810 | m_ReceiveGI: 1 811 | m_PreserveUVs: 0 812 | m_IgnoreNormalsForChartDetection: 0 813 | m_ImportantGI: 0 814 | m_StitchLightmapSeams: 1 815 | m_SelectedEditorRenderState: 3 816 | m_MinimumChartSize: 4 817 | m_AutoUVMaxDistance: 0.5 818 | m_AutoUVMaxAngle: 89 819 | m_LightmapParameters: {fileID: 0} 820 | m_SortingLayerID: 0 821 | m_SortingLayer: 0 822 | m_SortingOrder: 0 823 | --- !u!2083052967 &1791087880 824 | VisualEffect: 825 | m_ObjectHideFlags: 0 826 | m_CorrespondingSourceObject: {fileID: 0} 827 | m_PrefabInstance: {fileID: 0} 828 | m_PrefabAsset: {fileID: 0} 829 | m_GameObject: {fileID: 1791087878} 830 | m_Enabled: 1 831 | m_Asset: {fileID: 8926484042661614526, guid: 9aab714908b294e199cfdb654abb154a, type: 3} 832 | m_InitialEventName: OnPlay 833 | m_InitialEventNameOverriden: 0 834 | m_StartSeed: 0 835 | m_ResetSeedOnPlay: 1 836 | m_AllowInstancing: 1 837 | m_ResourceVersion: 1 838 | m_PropertySheet: 839 | m_Float: 840 | m_Array: [] 841 | m_Vector2f: 842 | m_Array: [] 843 | m_Vector3f: 844 | m_Array: [] 845 | m_Vector4f: 846 | m_Array: [] 847 | m_Uint: 848 | m_Array: [] 849 | m_Int: 850 | m_Array: [] 851 | m_Matrix4x4f: 852 | m_Array: [] 853 | m_AnimationCurve: 854 | m_Array: [] 855 | m_Gradient: 856 | m_Array: [] 857 | m_NamedObject: 858 | m_Array: [] 859 | m_Bool: 860 | m_Array: 861 | - m_Value: 1 862 | m_Name: Async 863 | m_Overridden: 1 864 | --- !u!4 &1791087881 865 | Transform: 866 | m_ObjectHideFlags: 0 867 | m_CorrespondingSourceObject: {fileID: 0} 868 | m_PrefabInstance: {fileID: 0} 869 | m_PrefabAsset: {fileID: 0} 870 | m_GameObject: {fileID: 1791087878} 871 | serializedVersion: 2 872 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 873 | m_LocalPosition: {x: 0.4, y: 0, z: 0} 874 | m_LocalScale: {x: 1, y: 1, z: 1} 875 | m_ConstrainProportionsScale: 0 876 | m_Children: [] 877 | m_Father: {fileID: 0} 878 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 879 | --- !u!1 &2116485665 880 | GameObject: 881 | m_ObjectHideFlags: 0 882 | m_CorrespondingSourceObject: {fileID: 0} 883 | m_PrefabInstance: {fileID: 0} 884 | m_PrefabAsset: {fileID: 0} 885 | serializedVersion: 6 886 | m_Component: 887 | - component: {fileID: 2116485669} 888 | - component: {fileID: 2116485668} 889 | - component: {fileID: 2116485666} 890 | m_Layer: 0 891 | m_Name: Main Camera 892 | m_TagString: MainCamera 893 | m_Icon: {fileID: 0} 894 | m_NavMeshLayer: 0 895 | m_StaticEditorFlags: 0 896 | m_IsActive: 1 897 | --- !u!114 &2116485666 898 | MonoBehaviour: 899 | m_ObjectHideFlags: 0 900 | m_CorrespondingSourceObject: {fileID: 0} 901 | m_PrefabInstance: {fileID: 0} 902 | m_PrefabAsset: {fileID: 0} 903 | m_GameObject: {fileID: 2116485665} 904 | m_Enabled: 1 905 | m_EditorHideFlags: 0 906 | m_Script: {fileID: 11500000, guid: 23c1ce4fb46143f46bc5cb5224c934f6, type: 3} 907 | m_Name: 908 | m_EditorClassIdentifier: 909 | clearColorMode: 1 910 | backgroundColorHDR: {r: 0.008582, g: 0.0139999995, b: 0.012374599, a: 0} 911 | clearDepth: 1 912 | volumeLayerMask: 913 | serializedVersion: 2 914 | m_Bits: 1 915 | volumeAnchorOverride: {fileID: 0} 916 | antialiasing: 0 917 | SMAAQuality: 2 918 | dithering: 0 919 | stopNaNs: 0 920 | taaSharpenStrength: 0.5 921 | TAAQuality: 1 922 | taaSharpenMode: 0 923 | taaRingingReduction: 0 924 | taaHistorySharpening: 0.35 925 | taaAntiFlicker: 0.5 926 | taaMotionVectorRejection: 0 927 | taaAntiHistoryRinging: 0 928 | taaBaseBlendFactor: 0.875 929 | taaJitterScale: 1 930 | physicalParameters: 931 | m_Iso: 200 932 | m_ShutterSpeed: 0.005 933 | m_Aperture: 16 934 | m_FocusDistance: 10 935 | m_BladeCount: 5 936 | m_Curvature: {x: 2, y: 11} 937 | m_BarrelClipping: 0.25 938 | m_Anamorphism: 0 939 | flipYMode: 0 940 | xrRendering: 1 941 | fullscreenPassthrough: 0 942 | allowDynamicResolution: 0 943 | customRenderingSettings: 0 944 | invertFaceCulling: 0 945 | probeLayerMask: 946 | serializedVersion: 2 947 | m_Bits: 4294967295 948 | hasPersistentHistory: 0 949 | screenSizeOverride: {x: 0, y: 0, z: 0, w: 0} 950 | screenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} 951 | allowDeepLearningSuperSampling: 1 952 | deepLearningSuperSamplingUseCustomQualitySettings: 0 953 | deepLearningSuperSamplingQuality: 0 954 | deepLearningSuperSamplingUseCustomAttributes: 0 955 | deepLearningSuperSamplingUseOptimalSettings: 1 956 | deepLearningSuperSamplingSharpening: 0 957 | allowFidelityFX2SuperResolution: 1 958 | fidelityFX2SuperResolutionUseCustomQualitySettings: 0 959 | fidelityFX2SuperResolutionQuality: 0 960 | fidelityFX2SuperResolutionUseCustomAttributes: 0 961 | fidelityFX2SuperResolutionUseOptimalSettings: 1 962 | fidelityFX2SuperResolutionEnableSharpening: 0 963 | fidelityFX2SuperResolutionSharpening: 0 964 | fsrOverrideSharpness: 0 965 | fsrSharpness: 0.92 966 | exposureTarget: {fileID: 0} 967 | materialMipBias: 0 968 | m_RenderingPathCustomFrameSettings: 969 | bitDatas: 970 | data1: 5770166122053453 971 | data2: 13799031440106553368 972 | lodBias: 1 973 | lodBiasMode: 0 974 | lodBiasQualityLevel: 0 975 | maximumLODLevel: 0 976 | maximumLODLevelMode: 0 977 | maximumLODLevelQualityLevel: 0 978 | sssQualityMode: 0 979 | sssQualityLevel: 0 980 | sssCustomSampleBudget: 20 981 | sssCustomDownsampleSteps: 0 982 | msaaMode: 1 983 | materialQuality: 0 984 | renderingPathCustomFrameSettingsOverrideMask: 985 | mask: 986 | data1: 0 987 | data2: 0 988 | defaultFrameSettings: 0 989 | m_Version: 9 990 | m_ObsoleteRenderingPath: 0 991 | m_ObsoleteFrameSettings: 992 | overrides: 0 993 | enableShadow: 0 994 | enableContactShadows: 0 995 | enableShadowMask: 0 996 | enableSSR: 0 997 | enableSSAO: 0 998 | enableSubsurfaceScattering: 0 999 | enableTransmission: 0 1000 | enableAtmosphericScattering: 0 1001 | enableVolumetrics: 0 1002 | enableReprojectionForVolumetrics: 0 1003 | enableLightLayers: 0 1004 | enableExposureControl: 1 1005 | diffuseGlobalDimmer: 0 1006 | specularGlobalDimmer: 0 1007 | shaderLitMode: 0 1008 | enableDepthPrepassWithDeferredRendering: 0 1009 | enableTransparentPrepass: 0 1010 | enableMotionVectors: 0 1011 | enableObjectMotionVectors: 0 1012 | enableDecals: 0 1013 | enableRoughRefraction: 0 1014 | enableTransparentPostpass: 0 1015 | enableDistortion: 0 1016 | enablePostprocess: 0 1017 | enableOpaqueObjects: 0 1018 | enableTransparentObjects: 0 1019 | enableRealtimePlanarReflection: 0 1020 | enableMSAA: 0 1021 | enableAsyncCompute: 0 1022 | runLightListAsync: 0 1023 | runSSRAsync: 0 1024 | runSSAOAsync: 0 1025 | runContactShadowsAsync: 0 1026 | runVolumeVoxelizationAsync: 0 1027 | lightLoopSettings: 1028 | overrides: 0 1029 | enableDeferredTileAndCluster: 0 1030 | enableComputeLightEvaluation: 0 1031 | enableComputeLightVariants: 0 1032 | enableComputeMaterialVariants: 0 1033 | enableFptlForForwardOpaque: 0 1034 | enableBigTilePrepass: 0 1035 | isFptlEnabled: 0 1036 | --- !u!20 &2116485668 1037 | Camera: 1038 | m_ObjectHideFlags: 0 1039 | m_CorrespondingSourceObject: {fileID: 0} 1040 | m_PrefabInstance: {fileID: 0} 1041 | m_PrefabAsset: {fileID: 0} 1042 | m_GameObject: {fileID: 2116485665} 1043 | m_Enabled: 1 1044 | serializedVersion: 2 1045 | m_ClearFlags: 1 1046 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 1047 | m_projectionMatrixMode: 1 1048 | m_GateFitMode: 1 1049 | m_FOVAxisMode: 0 1050 | m_Iso: 800 1051 | m_ShutterSpeed: 0.01 1052 | m_Aperture: 1.2 1053 | m_FocusDistance: 10 1054 | m_FocalLength: 55 1055 | m_BladeCount: 5 1056 | m_Curvature: {x: 2, y: 11} 1057 | m_BarrelClipping: 0.25 1058 | m_Anamorphism: 0 1059 | m_SensorSize: {x: 24.892, y: 18.669} 1060 | m_LensShift: {x: 0, y: 0} 1061 | m_NormalizedViewPortRect: 1062 | serializedVersion: 2 1063 | x: 0 1064 | y: 0 1065 | width: 1 1066 | height: 1 1067 | near clip plane: 0.1 1068 | far clip plane: 100 1069 | field of view: 19.264704 1070 | orthographic: 1 1071 | orthographic size: 1 1072 | m_Depth: 0 1073 | m_CullingMask: 1074 | serializedVersion: 2 1075 | m_Bits: 4294967295 1076 | m_RenderingPath: -1 1077 | m_TargetTexture: {fileID: 0} 1078 | m_TargetDisplay: 0 1079 | m_TargetEye: 3 1080 | m_HDR: 0 1081 | m_AllowMSAA: 0 1082 | m_AllowDynamicResolution: 0 1083 | m_ForceIntoRT: 0 1084 | m_OcclusionCulling: 0 1085 | m_StereoConvergence: 10 1086 | m_StereoSeparation: 0.022 1087 | --- !u!4 &2116485669 1088 | Transform: 1089 | m_ObjectHideFlags: 0 1090 | m_CorrespondingSourceObject: {fileID: 0} 1091 | m_PrefabInstance: {fileID: 0} 1092 | m_PrefabAsset: {fileID: 0} 1093 | m_GameObject: {fileID: 2116485665} 1094 | serializedVersion: 2 1095 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 1096 | m_LocalPosition: {x: 0, y: 0, z: -5} 1097 | m_LocalScale: {x: 1, y: 1, z: 1} 1098 | m_ConstrainProportionsScale: 0 1099 | m_Children: [] 1100 | m_Father: {fileID: 219548319} 1101 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 1102 | --- !u!1660057539 &9223372036854775807 1103 | SceneRoots: 1104 | m_ObjectHideFlags: 0 1105 | m_Roots: 1106 | - {fileID: 1000558577} 1107 | - {fileID: 219548319} 1108 | - {fileID: 471448869} 1109 | - {fileID: 688970489} 1110 | - {fileID: 676789974} 1111 | - {fileID: 1791087881} 1112 | - {fileID: 1405731856} 1113 | -------------------------------------------------------------------------------- /Assets/Main.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90b27fb46ee534b9ba70965bdfdfe29d 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 757adb6ad3321453fa4ffda8a74ca33f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Materials/Meter.shadergraph: -------------------------------------------------------------------------------- 1 | { 2 | "m_SGVersion": 3, 3 | "m_Type": "UnityEditor.ShaderGraph.GraphData", 4 | "m_ObjectId": "4b663a4a564447fd830a288ab0f9aff9", 5 | "m_Properties": [ 6 | { 7 | "m_Id": "f9e9ce98ec864861a95d24f98c9ae03d" 8 | } 9 | ], 10 | "m_Keywords": [], 11 | "m_Dropdowns": [], 12 | "m_CategoryData": [ 13 | { 14 | "m_Id": "a4233d86997844c684dc184cae475b7d" 15 | } 16 | ], 17 | "m_Nodes": [ 18 | { 19 | "m_Id": "83f067dcda51414ab237ea30ec41f9e5" 20 | }, 21 | { 22 | "m_Id": "513df7c1417e47d5a2fcf6d4b5bbe1fd" 23 | }, 24 | { 25 | "m_Id": "59cb9b5ea3b24a29a7b99507b50feb7a" 26 | }, 27 | { 28 | "m_Id": "59c809e146924d798e18b21c284f5fb7" 29 | }, 30 | { 31 | "m_Id": "aa4a5cd31a4640e1b6f4b03c864de26e" 32 | }, 33 | { 34 | "m_Id": "760bb987b7e64c5fa67af12885ef5b30" 35 | }, 36 | { 37 | "m_Id": "9c2fb42b010c40c3b932a5bdf93894cc" 38 | }, 39 | { 40 | "m_Id": "dddaa3bee9d94b7e88187fb68076fad9" 41 | }, 42 | { 43 | "m_Id": "c64e5af66cc441e7a56ed3e27410bacd" 44 | }, 45 | { 46 | "m_Id": "77cce2a4743143d58dd03322a0019581" 47 | }, 48 | { 49 | "m_Id": "809aa7cc8a8546d3b5260faeefc367ae" 50 | }, 51 | { 52 | "m_Id": "7f91018a43a24ee5872bdbbde911c1a4" 53 | }, 54 | { 55 | "m_Id": "3b3981e8261d4135b915733905aaadd9" 56 | }, 57 | { 58 | "m_Id": "5a65afc3b8de410a9a62caa33f9285be" 59 | }, 60 | { 61 | "m_Id": "9446ba6580af49cd86edb243e3332caa" 62 | }, 63 | { 64 | "m_Id": "6c279c1f6390403a9d854b8b6fa722da" 65 | } 66 | ], 67 | "m_GroupDatas": [], 68 | "m_StickyNoteDatas": [], 69 | "m_Edges": [ 70 | { 71 | "m_OutputSlot": { 72 | "m_Node": { 73 | "m_Id": "3b3981e8261d4135b915733905aaadd9" 74 | }, 75 | "m_SlotId": 2 76 | }, 77 | "m_InputSlot": { 78 | "m_Node": { 79 | "m_Id": "9446ba6580af49cd86edb243e3332caa" 80 | }, 81 | "m_SlotId": 1 82 | } 83 | }, 84 | { 85 | "m_OutputSlot": { 86 | "m_Node": { 87 | "m_Id": "5a65afc3b8de410a9a62caa33f9285be" 88 | }, 89 | "m_SlotId": 2 90 | }, 91 | "m_InputSlot": { 92 | "m_Node": { 93 | "m_Id": "9446ba6580af49cd86edb243e3332caa" 94 | }, 95 | "m_SlotId": 2 96 | } 97 | }, 98 | { 99 | "m_OutputSlot": { 100 | "m_Node": { 101 | "m_Id": "6c279c1f6390403a9d854b8b6fa722da" 102 | }, 103 | "m_SlotId": 0 104 | }, 105 | "m_InputSlot": { 106 | "m_Node": { 107 | "m_Id": "9446ba6580af49cd86edb243e3332caa" 108 | }, 109 | "m_SlotId": 0 110 | } 111 | }, 112 | { 113 | "m_OutputSlot": { 114 | "m_Node": { 115 | "m_Id": "77cce2a4743143d58dd03322a0019581" 116 | }, 117 | "m_SlotId": 0 118 | }, 119 | "m_InputSlot": { 120 | "m_Node": { 121 | "m_Id": "3b3981e8261d4135b915733905aaadd9" 122 | }, 123 | "m_SlotId": 1 124 | } 125 | }, 126 | { 127 | "m_OutputSlot": { 128 | "m_Node": { 129 | "m_Id": "7f91018a43a24ee5872bdbbde911c1a4" 130 | }, 131 | "m_SlotId": 0 132 | }, 133 | "m_InputSlot": { 134 | "m_Node": { 135 | "m_Id": "5a65afc3b8de410a9a62caa33f9285be" 136 | }, 137 | "m_SlotId": 0 138 | } 139 | }, 140 | { 141 | "m_OutputSlot": { 142 | "m_Node": { 143 | "m_Id": "809aa7cc8a8546d3b5260faeefc367ae" 144 | }, 145 | "m_SlotId": 0 146 | }, 147 | "m_InputSlot": { 148 | "m_Node": { 149 | "m_Id": "5a65afc3b8de410a9a62caa33f9285be" 150 | }, 151 | "m_SlotId": 1 152 | } 153 | }, 154 | { 155 | "m_OutputSlot": { 156 | "m_Node": { 157 | "m_Id": "9446ba6580af49cd86edb243e3332caa" 158 | }, 159 | "m_SlotId": 3 160 | }, 161 | "m_InputSlot": { 162 | "m_Node": { 163 | "m_Id": "59c809e146924d798e18b21c284f5fb7" 164 | }, 165 | "m_SlotId": 0 166 | } 167 | }, 168 | { 169 | "m_OutputSlot": { 170 | "m_Node": { 171 | "m_Id": "9c2fb42b010c40c3b932a5bdf93894cc" 172 | }, 173 | "m_SlotId": 0 174 | }, 175 | "m_InputSlot": { 176 | "m_Node": { 177 | "m_Id": "dddaa3bee9d94b7e88187fb68076fad9" 178 | }, 179 | "m_SlotId": 0 180 | } 181 | }, 182 | { 183 | "m_OutputSlot": { 184 | "m_Node": { 185 | "m_Id": "dddaa3bee9d94b7e88187fb68076fad9" 186 | }, 187 | "m_SlotId": 1 188 | }, 189 | "m_InputSlot": { 190 | "m_Node": { 191 | "m_Id": "c64e5af66cc441e7a56ed3e27410bacd" 192 | }, 193 | "m_SlotId": 0 194 | } 195 | } 196 | ], 197 | "m_VertexContext": { 198 | "m_Position": { 199 | "x": 0.0, 200 | "y": 0.0 201 | }, 202 | "m_Blocks": [ 203 | { 204 | "m_Id": "83f067dcda51414ab237ea30ec41f9e5" 205 | }, 206 | { 207 | "m_Id": "513df7c1417e47d5a2fcf6d4b5bbe1fd" 208 | }, 209 | { 210 | "m_Id": "59cb9b5ea3b24a29a7b99507b50feb7a" 211 | }, 212 | { 213 | "m_Id": "c64e5af66cc441e7a56ed3e27410bacd" 214 | } 215 | ] 216 | }, 217 | "m_FragmentContext": { 218 | "m_Position": { 219 | "x": 0.0, 220 | "y": 337.0 221 | }, 222 | "m_Blocks": [ 223 | { 224 | "m_Id": "59c809e146924d798e18b21c284f5fb7" 225 | }, 226 | { 227 | "m_Id": "aa4a5cd31a4640e1b6f4b03c864de26e" 228 | }, 229 | { 230 | "m_Id": "760bb987b7e64c5fa67af12885ef5b30" 231 | } 232 | ] 233 | }, 234 | "m_PreviewData": { 235 | "serializedMesh": { 236 | "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}", 237 | "m_Guid": "" 238 | }, 239 | "preventRotation": false 240 | }, 241 | "m_Path": "Shader Graphs", 242 | "m_GraphPrecision": 1, 243 | "m_PreviewMode": 2, 244 | "m_OutputNode": { 245 | "m_Id": "" 246 | }, 247 | "m_SubDatas": [], 248 | "m_ActiveTargets": [ 249 | { 250 | "m_Id": "91ef0dc16a014ea9bf9a4466f95dab88" 251 | } 252 | ] 253 | } 254 | 255 | { 256 | "m_SGVersion": 0, 257 | "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", 258 | "m_ObjectId": "08ab56de54764a6eac32ce84946670fd", 259 | "m_Id": 0, 260 | "m_DisplayName": "Edge", 261 | "m_SlotType": 0, 262 | "m_Hidden": false, 263 | "m_ShaderOutputName": "Edge", 264 | "m_StageCapability": 3, 265 | "m_Value": { 266 | "x": 1.0, 267 | "y": 1.0, 268 | "z": 1.0, 269 | "w": 1.0 270 | }, 271 | "m_DefaultValue": { 272 | "x": 0.0, 273 | "y": 0.0, 274 | "z": 0.0, 275 | "w": 0.0 276 | } 277 | } 278 | 279 | { 280 | "m_SGVersion": 0, 281 | "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData", 282 | "m_ObjectId": "0995e9756eb84cb38e33731fdded3129", 283 | "m_EnableShadowMatte": false, 284 | "m_DistortionOnly": false 285 | } 286 | 287 | { 288 | "m_SGVersion": 0, 289 | "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", 290 | "m_ObjectId": "18cd7c6770c346bb8c17b10ca01b773d", 291 | "m_Id": 0, 292 | "m_DisplayName": "Out", 293 | "m_SlotType": 1, 294 | "m_Hidden": false, 295 | "m_ShaderOutputName": "Out", 296 | "m_StageCapability": 2, 297 | "m_Value": 0.0, 298 | "m_DefaultValue": 0.0, 299 | "m_Labels": [] 300 | } 301 | 302 | { 303 | "m_SGVersion": 0, 304 | "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", 305 | "m_ObjectId": "1c70562434fe498d90b4a0160a16abc8", 306 | "m_Id": 1, 307 | "m_DisplayName": "In", 308 | "m_SlotType": 0, 309 | "m_Hidden": false, 310 | "m_ShaderOutputName": "In", 311 | "m_StageCapability": 3, 312 | "m_Value": { 313 | "x": 0.0, 314 | "y": 0.0, 315 | "z": 0.0, 316 | "w": 0.0 317 | }, 318 | "m_DefaultValue": { 319 | "x": 0.0, 320 | "y": 0.0, 321 | "z": 0.0, 322 | "w": 0.0 323 | } 324 | } 325 | 326 | { 327 | "m_SGVersion": 0, 328 | "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", 329 | "m_ObjectId": "215be3f31cc641399a8213d0ac20e21c", 330 | "m_Id": 0, 331 | "m_DisplayName": "Position", 332 | "m_SlotType": 0, 333 | "m_Hidden": false, 334 | "m_ShaderOutputName": "Position", 335 | "m_StageCapability": 1, 336 | "m_Value": { 337 | "x": 0.0, 338 | "y": 0.0, 339 | "z": 0.0 340 | }, 341 | "m_DefaultValue": { 342 | "x": 0.0, 343 | "y": 0.0, 344 | "z": 0.0 345 | }, 346 | "m_Labels": [], 347 | "m_Space": 0 348 | } 349 | 350 | { 351 | "m_SGVersion": 1, 352 | "m_Type": "UnityEditor.ShaderGraph.SampleGradient", 353 | "m_ObjectId": "3b3981e8261d4135b915733905aaadd9", 354 | "m_Group": { 355 | "m_Id": "" 356 | }, 357 | "m_Name": "Sample Gradient", 358 | "m_DrawState": { 359 | "m_Expanded": true, 360 | "m_Position": { 361 | "serializedVersion": "2", 362 | "x": -515.5, 363 | "y": 407.5, 364 | "width": 168.0, 365 | "height": 118.0 366 | } 367 | }, 368 | "m_Slots": [ 369 | { 370 | "m_Id": "5dce0fff286e4849a215cc05a120929c" 371 | }, 372 | { 373 | "m_Id": "72122d37854c4e529726c80ef10cf6b1" 374 | }, 375 | { 376 | "m_Id": "c8d4768cee0a485a9de80602ec1ca0c7" 377 | } 378 | ], 379 | "synonyms": [], 380 | "m_Precision": 0, 381 | "m_PreviewExpanded": false, 382 | "m_DismissedVersion": 0, 383 | "m_PreviewMode": 0, 384 | "m_CustomColors": { 385 | "m_SerializableColors": [] 386 | } 387 | } 388 | 389 | { 390 | "m_SGVersion": 0, 391 | "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", 392 | "m_ObjectId": "3dc18a00d1c9402990ecdb670d9bd627", 393 | "m_Id": 0, 394 | "m_DisplayName": "Tangent", 395 | "m_SlotType": 0, 396 | "m_Hidden": false, 397 | "m_ShaderOutputName": "Tangent", 398 | "m_StageCapability": 1, 399 | "m_Value": { 400 | "x": 0.0, 401 | "y": 0.0, 402 | "z": 0.0 403 | }, 404 | "m_DefaultValue": { 405 | "x": 0.0, 406 | "y": 0.0, 407 | "z": 0.0 408 | }, 409 | "m_Labels": [], 410 | "m_Space": 0 411 | } 412 | 413 | { 414 | "m_SGVersion": 0, 415 | "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", 416 | "m_ObjectId": "409b543529e04fcfbe7e08ef517dab8d", 417 | "m_Id": 0, 418 | "m_DisplayName": "Alpha", 419 | "m_SlotType": 0, 420 | "m_Hidden": false, 421 | "m_ShaderOutputName": "Alpha", 422 | "m_StageCapability": 2, 423 | "m_Value": 1.0, 424 | "m_DefaultValue": 1.0, 425 | "m_Labels": [] 426 | } 427 | 428 | { 429 | "m_SGVersion": 0, 430 | "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData", 431 | "m_ObjectId": "411fc952dafd47f9bc752b98449be116", 432 | "m_MaterialNeedsUpdateHash": 0, 433 | "m_SurfaceType": 0, 434 | "m_RenderingPass": 1, 435 | "m_BlendMode": 0, 436 | "m_ZTest": 4, 437 | "m_ZWrite": false, 438 | "m_TransparentCullMode": 2, 439 | "m_OpaqueCullMode": 2, 440 | "m_SortPriority": 0, 441 | "m_AlphaTest": false, 442 | "m_ExcludeFromTUAndAA": false, 443 | "m_TransparentDepthPrepass": false, 444 | "m_TransparentDepthPostpass": false, 445 | "m_SupportLodCrossFade": false, 446 | "m_DoubleSidedMode": 0, 447 | "m_DOTSInstancing": false, 448 | "m_CustomVelocity": false, 449 | "m_Tessellation": false, 450 | "m_TessellationMode": 0, 451 | "m_TessellationFactorMinDistance": 20.0, 452 | "m_TessellationFactorMaxDistance": 50.0, 453 | "m_TessellationFactorTriangleSize": 100.0, 454 | "m_TessellationShapeFactor": 0.75, 455 | "m_TessellationBackFaceCullEpsilon": -0.25, 456 | "m_TessellationMaxDisplacement": 0.009999999776482582, 457 | "m_DebugSymbols": false, 458 | "m_Version": 2, 459 | "inspectorFoldoutMask": 1 460 | } 461 | 462 | { 463 | "m_SGVersion": 0, 464 | "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", 465 | "m_ObjectId": "4463407c7e2b487a855963a0582a3bc8", 466 | "m_Id": 1, 467 | "m_DisplayName": "B", 468 | "m_SlotType": 0, 469 | "m_Hidden": false, 470 | "m_ShaderOutputName": "B", 471 | "m_StageCapability": 3, 472 | "m_Value": { 473 | "x": 1.0, 474 | "y": 1.0, 475 | "z": 1.0, 476 | "w": 1.0 477 | }, 478 | "m_DefaultValue": { 479 | "x": 0.0, 480 | "y": 0.0, 481 | "z": 0.0, 482 | "w": 0.0 483 | } 484 | } 485 | 486 | { 487 | "m_SGVersion": 0, 488 | "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", 489 | "m_ObjectId": "4db4b9be36004e28bda91ef4d8a287a4", 490 | "m_Id": 0, 491 | "m_DisplayName": "Pos", 492 | "m_SlotType": 0, 493 | "m_Hidden": false, 494 | "m_ShaderOutputName": "Pos", 495 | "m_StageCapability": 3, 496 | "m_Value": { 497 | "x": 0.0, 498 | "y": 0.0, 499 | "z": 0.0 500 | }, 501 | "m_DefaultValue": { 502 | "x": 0.0, 503 | "y": 0.0, 504 | "z": 0.0 505 | }, 506 | "m_Labels": [] 507 | } 508 | 509 | { 510 | "m_SGVersion": 0, 511 | "m_Type": "UnityEditor.ShaderGraph.BlockNode", 512 | "m_ObjectId": "513df7c1417e47d5a2fcf6d4b5bbe1fd", 513 | "m_Group": { 514 | "m_Id": "" 515 | }, 516 | "m_Name": "VertexDescription.Normal", 517 | "m_DrawState": { 518 | "m_Expanded": true, 519 | "m_Position": { 520 | "serializedVersion": "2", 521 | "x": 0.0, 522 | "y": 0.0, 523 | "width": 0.0, 524 | "height": 0.0 525 | } 526 | }, 527 | "m_Slots": [ 528 | { 529 | "m_Id": "7037dd942013478aae54974b09366363" 530 | } 531 | ], 532 | "synonyms": [], 533 | "m_Precision": 0, 534 | "m_PreviewExpanded": true, 535 | "m_DismissedVersion": 0, 536 | "m_PreviewMode": 0, 537 | "m_CustomColors": { 538 | "m_SerializableColors": [] 539 | }, 540 | "m_SerializedDescriptor": "VertexDescription.Normal" 541 | } 542 | 543 | { 544 | "m_SGVersion": 0, 545 | "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", 546 | "m_ObjectId": "52af53fb2e9049809d8878ddf9faa6bf", 547 | "m_Id": 0, 548 | "m_DisplayName": "Out", 549 | "m_SlotType": 1, 550 | "m_Hidden": false, 551 | "m_ShaderOutputName": "Out", 552 | "m_StageCapability": 2, 553 | "m_Value": 0.0, 554 | "m_DefaultValue": 0.0, 555 | "m_Labels": [] 556 | } 557 | 558 | { 559 | "m_SGVersion": 0, 560 | "m_Type": "UnityEditor.ShaderGraph.BlockNode", 561 | "m_ObjectId": "59c809e146924d798e18b21c284f5fb7", 562 | "m_Group": { 563 | "m_Id": "" 564 | }, 565 | "m_Name": "SurfaceDescription.BaseColor", 566 | "m_DrawState": { 567 | "m_Expanded": true, 568 | "m_Position": { 569 | "serializedVersion": "2", 570 | "x": 0.0, 571 | "y": 0.0, 572 | "width": 0.0, 573 | "height": 0.0 574 | } 575 | }, 576 | "m_Slots": [ 577 | { 578 | "m_Id": "9f1882bd47a84051860758c5a65be64b" 579 | } 580 | ], 581 | "synonyms": [], 582 | "m_Precision": 0, 583 | "m_PreviewExpanded": true, 584 | "m_DismissedVersion": 0, 585 | "m_PreviewMode": 0, 586 | "m_CustomColors": { 587 | "m_SerializableColors": [] 588 | }, 589 | "m_SerializedDescriptor": "SurfaceDescription.BaseColor" 590 | } 591 | 592 | { 593 | "m_SGVersion": 0, 594 | "m_Type": "UnityEditor.ShaderGraph.BlockNode", 595 | "m_ObjectId": "59cb9b5ea3b24a29a7b99507b50feb7a", 596 | "m_Group": { 597 | "m_Id": "" 598 | }, 599 | "m_Name": "VertexDescription.Tangent", 600 | "m_DrawState": { 601 | "m_Expanded": true, 602 | "m_Position": { 603 | "serializedVersion": "2", 604 | "x": 0.0, 605 | "y": 0.0, 606 | "width": 0.0, 607 | "height": 0.0 608 | } 609 | }, 610 | "m_Slots": [ 611 | { 612 | "m_Id": "3dc18a00d1c9402990ecdb670d9bd627" 613 | } 614 | ], 615 | "synonyms": [], 616 | "m_Precision": 0, 617 | "m_PreviewExpanded": true, 618 | "m_DismissedVersion": 0, 619 | "m_PreviewMode": 0, 620 | "m_CustomColors": { 621 | "m_SerializableColors": [] 622 | }, 623 | "m_SerializedDescriptor": "VertexDescription.Tangent" 624 | } 625 | 626 | { 627 | "m_SGVersion": 0, 628 | "m_Type": "UnityEditor.ShaderGraph.StepNode", 629 | "m_ObjectId": "5a65afc3b8de410a9a62caa33f9285be", 630 | "m_Group": { 631 | "m_Id": "" 632 | }, 633 | "m_Name": "Step", 634 | "m_DrawState": { 635 | "m_Expanded": true, 636 | "m_Position": { 637 | "serializedVersion": "2", 638 | "x": -492.5, 639 | "y": 525.5, 640 | "width": 145.0, 641 | "height": 118.0 642 | } 643 | }, 644 | "m_Slots": [ 645 | { 646 | "m_Id": "08ab56de54764a6eac32ce84946670fd" 647 | }, 648 | { 649 | "m_Id": "1c70562434fe498d90b4a0160a16abc8" 650 | }, 651 | { 652 | "m_Id": "8294f0e8a5cd4ab4843ce0d9083cc4b7" 653 | } 654 | ], 655 | "synonyms": [], 656 | "m_Precision": 0, 657 | "m_PreviewExpanded": false, 658 | "m_DismissedVersion": 0, 659 | "m_PreviewMode": 0, 660 | "m_CustomColors": { 661 | "m_SerializableColors": [] 662 | } 663 | } 664 | 665 | { 666 | "m_SGVersion": 0, 667 | "m_Type": "UnityEditor.ShaderGraph.GradientInputMaterialSlot", 668 | "m_ObjectId": "5dce0fff286e4849a215cc05a120929c", 669 | "m_Id": 0, 670 | "m_DisplayName": "Gradient", 671 | "m_SlotType": 0, 672 | "m_Hidden": false, 673 | "m_ShaderOutputName": "Gradient", 674 | "m_StageCapability": 3, 675 | "m_Value": { 676 | "serializedVersion": "2", 677 | "key0": { 678 | "r": 0.1631622314453125, 679 | "g": 1.0, 680 | "b": 0.0, 681 | "a": 1.0 682 | }, 683 | "key1": { 684 | "r": 1.0, 685 | "g": 0.6897314786911011, 686 | "b": 0.0, 687 | "a": 1.0 688 | }, 689 | "key2": { 690 | "r": 1.0, 691 | "g": 0.0, 692 | "b": 0.0, 693 | "a": 0.0 694 | }, 695 | "key3": { 696 | "r": 0.0, 697 | "g": 0.0, 698 | "b": 0.0, 699 | "a": 0.0 700 | }, 701 | "key4": { 702 | "r": 0.0, 703 | "g": 0.0, 704 | "b": 0.0, 705 | "a": 0.0 706 | }, 707 | "key5": { 708 | "r": 0.0, 709 | "g": 0.0, 710 | "b": 0.0, 711 | "a": 0.0 712 | }, 713 | "key6": { 714 | "r": 0.0, 715 | "g": 0.0, 716 | "b": 0.0, 717 | "a": 0.0 718 | }, 719 | "key7": { 720 | "r": 0.0, 721 | "g": 0.0, 722 | "b": 0.0, 723 | "a": 0.0 724 | }, 725 | "ctime0": 0, 726 | "ctime1": 29353, 727 | "ctime2": 65535, 728 | "ctime3": 0, 729 | "ctime4": 0, 730 | "ctime5": 0, 731 | "ctime6": 0, 732 | "ctime7": 0, 733 | "atime0": 0, 734 | "atime1": 65535, 735 | "atime2": 0, 736 | "atime3": 0, 737 | "atime4": 0, 738 | "atime5": 0, 739 | "atime6": 0, 740 | "atime7": 0, 741 | "m_Mode": 0, 742 | "m_ColorSpace": -1, 743 | "m_NumColorKeys": 3, 744 | "m_NumAlphaKeys": 2 745 | }, 746 | "m_DefaultValue": { 747 | "serializedVersion": "2", 748 | "key0": { 749 | "r": 1.0, 750 | "g": 1.0, 751 | "b": 1.0, 752 | "a": 1.0 753 | }, 754 | "key1": { 755 | "r": 1.0, 756 | "g": 1.0, 757 | "b": 1.0, 758 | "a": 1.0 759 | }, 760 | "key2": { 761 | "r": 0.0, 762 | "g": 0.0, 763 | "b": 0.0, 764 | "a": 0.0 765 | }, 766 | "key3": { 767 | "r": 0.0, 768 | "g": 0.0, 769 | "b": 0.0, 770 | "a": 0.0 771 | }, 772 | "key4": { 773 | "r": 0.0, 774 | "g": 0.0, 775 | "b": 0.0, 776 | "a": 0.0 777 | }, 778 | "key5": { 779 | "r": 0.0, 780 | "g": 0.0, 781 | "b": 0.0, 782 | "a": 0.0 783 | }, 784 | "key6": { 785 | "r": 0.0, 786 | "g": 0.0, 787 | "b": 0.0, 788 | "a": 0.0 789 | }, 790 | "key7": { 791 | "r": 0.0, 792 | "g": 0.0, 793 | "b": 0.0, 794 | "a": 0.0 795 | }, 796 | "ctime0": 0, 797 | "ctime1": 65535, 798 | "ctime2": 0, 799 | "ctime3": 0, 800 | "ctime4": 0, 801 | "ctime5": 0, 802 | "ctime6": 0, 803 | "ctime7": 0, 804 | "atime0": 0, 805 | "atime1": 65535, 806 | "atime2": 0, 807 | "atime3": 0, 808 | "atime4": 0, 809 | "atime5": 0, 810 | "atime6": 0, 811 | "atime7": 0, 812 | "m_Mode": 0, 813 | "m_ColorSpace": -1, 814 | "m_NumColorKeys": 2, 815 | "m_NumAlphaKeys": 2 816 | } 817 | } 818 | 819 | { 820 | "m_SGVersion": 0, 821 | "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", 822 | "m_ObjectId": "60b91ee3fd624f9eba7182cd9eac9fb9", 823 | "m_Id": 1, 824 | "m_DisplayName": "Output", 825 | "m_SlotType": 1, 826 | "m_Hidden": false, 827 | "m_ShaderOutputName": "Output", 828 | "m_StageCapability": 3, 829 | "m_Value": 0.0, 830 | "m_DefaultValue": 0.0, 831 | "m_Labels": [] 832 | } 833 | 834 | { 835 | "m_SGVersion": 1, 836 | "m_Type": "UnityEditor.ShaderGraph.ColorNode", 837 | "m_ObjectId": "6c279c1f6390403a9d854b8b6fa722da", 838 | "m_Group": { 839 | "m_Id": "" 840 | }, 841 | "m_Name": "Color", 842 | "m_DrawState": { 843 | "m_Expanded": true, 844 | "m_Position": { 845 | "serializedVersion": "2", 846 | "x": -555.5, 847 | "y": 282.5, 848 | "width": 208.0, 849 | "height": 125.0 850 | } 851 | }, 852 | "m_Slots": [ 853 | { 854 | "m_Id": "a5838b4e90ce481bb47fcd8d38e1270f" 855 | } 856 | ], 857 | "synonyms": [ 858 | "rgba" 859 | ], 860 | "m_Precision": 0, 861 | "m_PreviewExpanded": true, 862 | "m_DismissedVersion": 0, 863 | "m_PreviewMode": 0, 864 | "m_CustomColors": { 865 | "m_SerializableColors": [] 866 | }, 867 | "m_Color": { 868 | "color": { 869 | "r": 0.25184905529022219, 870 | "g": 0.2706037759780884, 871 | "b": 0.2840000092983246, 872 | "a": 1.0 873 | }, 874 | "mode": 0 875 | } 876 | } 877 | 878 | { 879 | "m_SGVersion": 0, 880 | "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", 881 | "m_ObjectId": "6f92d021523c4ca1a585747170310d38", 882 | "m_Id": 0, 883 | "m_DisplayName": "Out", 884 | "m_SlotType": 1, 885 | "m_Hidden": false, 886 | "m_ShaderOutputName": "Out", 887 | "m_StageCapability": 3, 888 | "m_Value": { 889 | "x": 0.0, 890 | "y": 0.0, 891 | "z": 0.0 892 | }, 893 | "m_DefaultValue": { 894 | "x": 0.0, 895 | "y": 0.0, 896 | "z": 0.0 897 | }, 898 | "m_Labels": [] 899 | } 900 | 901 | { 902 | "m_SGVersion": 0, 903 | "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", 904 | "m_ObjectId": "7037dd942013478aae54974b09366363", 905 | "m_Id": 0, 906 | "m_DisplayName": "Normal", 907 | "m_SlotType": 0, 908 | "m_Hidden": false, 909 | "m_ShaderOutputName": "Normal", 910 | "m_StageCapability": 1, 911 | "m_Value": { 912 | "x": 0.0, 913 | "y": 0.0, 914 | "z": 0.0 915 | }, 916 | "m_DefaultValue": { 917 | "x": 0.0, 918 | "y": 0.0, 919 | "z": 0.0 920 | }, 921 | "m_Labels": [], 922 | "m_Space": 0 923 | } 924 | 925 | { 926 | "m_SGVersion": 0, 927 | "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", 928 | "m_ObjectId": "72122d37854c4e529726c80ef10cf6b1", 929 | "m_Id": 1, 930 | "m_DisplayName": "Time", 931 | "m_SlotType": 0, 932 | "m_Hidden": false, 933 | "m_ShaderOutputName": "Time", 934 | "m_StageCapability": 3, 935 | "m_Value": 0.0, 936 | "m_DefaultValue": 0.0, 937 | "m_Labels": [] 938 | } 939 | 940 | { 941 | "m_SGVersion": 0, 942 | "m_Type": "UnityEditor.ShaderGraph.BlockNode", 943 | "m_ObjectId": "760bb987b7e64c5fa67af12885ef5b30", 944 | "m_Group": { 945 | "m_Id": "" 946 | }, 947 | "m_Name": "SurfaceDescription.Alpha", 948 | "m_DrawState": { 949 | "m_Expanded": true, 950 | "m_Position": { 951 | "serializedVersion": "2", 952 | "x": 0.0, 953 | "y": 0.0, 954 | "width": 0.0, 955 | "height": 0.0 956 | } 957 | }, 958 | "m_Slots": [ 959 | { 960 | "m_Id": "409b543529e04fcfbe7e08ef517dab8d" 961 | } 962 | ], 963 | "synonyms": [], 964 | "m_Precision": 0, 965 | "m_PreviewExpanded": true, 966 | "m_DismissedVersion": 0, 967 | "m_PreviewMode": 0, 968 | "m_CustomColors": { 969 | "m_SerializableColors": [] 970 | }, 971 | "m_SerializedDescriptor": "SurfaceDescription.Alpha" 972 | } 973 | 974 | { 975 | "m_SGVersion": 0, 976 | "m_Type": "UnityEditor.ShaderGraph.CustomInterpolatorNode", 977 | "m_ObjectId": "77cce2a4743143d58dd03322a0019581", 978 | "m_Group": { 979 | "m_Id": "" 980 | }, 981 | "m_Name": "ArcParam (Custom Interpolator)", 982 | "m_DrawState": { 983 | "m_Expanded": true, 984 | "m_Position": { 985 | "serializedVersion": "2", 986 | "x": -826.5, 987 | "y": 431.5, 988 | "width": 226.5, 989 | "height": 94.0 990 | } 991 | }, 992 | "m_Slots": [ 993 | { 994 | "m_Id": "18cd7c6770c346bb8c17b10ca01b773d" 995 | } 996 | ], 997 | "synonyms": [], 998 | "m_Precision": 0, 999 | "m_PreviewExpanded": false, 1000 | "m_DismissedVersion": 0, 1001 | "m_PreviewMode": 0, 1002 | "m_CustomColors": { 1003 | "m_SerializableColors": [] 1004 | }, 1005 | "customBlockNodeName": "ArcParam", 1006 | "serializedType": 1 1007 | } 1008 | 1009 | { 1010 | "m_SGVersion": 0, 1011 | "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget", 1012 | "m_ObjectId": "7ac9789bdabc4d54871377381132784f" 1013 | } 1014 | 1015 | { 1016 | "m_SGVersion": 0, 1017 | "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", 1018 | "m_ObjectId": "7dd53c72520e4d92adb2383030536ba2", 1019 | "m_Id": 0, 1020 | "m_DisplayName": "Value", 1021 | "m_SlotType": 1, 1022 | "m_Hidden": false, 1023 | "m_ShaderOutputName": "Out", 1024 | "m_StageCapability": 3, 1025 | "m_Value": 0.0, 1026 | "m_DefaultValue": 0.0, 1027 | "m_Labels": [] 1028 | } 1029 | 1030 | { 1031 | "m_SGVersion": 0, 1032 | "m_Type": "UnityEditor.ShaderGraph.CustomInterpolatorNode", 1033 | "m_ObjectId": "7f91018a43a24ee5872bdbbde911c1a4", 1034 | "m_Group": { 1035 | "m_Id": "" 1036 | }, 1037 | "m_Name": "ArcParam (Custom Interpolator)", 1038 | "m_DrawState": { 1039 | "m_Expanded": true, 1040 | "m_Position": { 1041 | "serializedVersion": "2", 1042 | "x": -745.5, 1043 | "y": 525.5, 1044 | "width": 226.5, 1045 | "height": 94.0 1046 | } 1047 | }, 1048 | "m_Slots": [ 1049 | { 1050 | "m_Id": "52af53fb2e9049809d8878ddf9faa6bf" 1051 | } 1052 | ], 1053 | "synonyms": [], 1054 | "m_Precision": 0, 1055 | "m_PreviewExpanded": false, 1056 | "m_DismissedVersion": 0, 1057 | "m_PreviewMode": 0, 1058 | "m_CustomColors": { 1059 | "m_SerializableColors": [] 1060 | }, 1061 | "customBlockNodeName": "ArcParam", 1062 | "serializedType": 1 1063 | } 1064 | 1065 | { 1066 | "m_SGVersion": 0, 1067 | "m_Type": "UnityEditor.ShaderGraph.PropertyNode", 1068 | "m_ObjectId": "809aa7cc8a8546d3b5260faeefc367ae", 1069 | "m_Group": { 1070 | "m_Id": "" 1071 | }, 1072 | "m_Name": "Property", 1073 | "m_DrawState": { 1074 | "m_Expanded": true, 1075 | "m_Position": { 1076 | "serializedVersion": "2", 1077 | "x": -623.0, 1078 | "y": 619.5, 1079 | "width": 104.0, 1080 | "height": 34.0 1081 | } 1082 | }, 1083 | "m_Slots": [ 1084 | { 1085 | "m_Id": "7dd53c72520e4d92adb2383030536ba2" 1086 | } 1087 | ], 1088 | "synonyms": [], 1089 | "m_Precision": 0, 1090 | "m_PreviewExpanded": true, 1091 | "m_DismissedVersion": 0, 1092 | "m_PreviewMode": 0, 1093 | "m_CustomColors": { 1094 | "m_SerializableColors": [] 1095 | }, 1096 | "m_Property": { 1097 | "m_Id": "f9e9ce98ec864861a95d24f98c9ae03d" 1098 | } 1099 | } 1100 | 1101 | { 1102 | "m_SGVersion": 0, 1103 | "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", 1104 | "m_ObjectId": "8294f0e8a5cd4ab4843ce0d9083cc4b7", 1105 | "m_Id": 2, 1106 | "m_DisplayName": "Out", 1107 | "m_SlotType": 1, 1108 | "m_Hidden": false, 1109 | "m_ShaderOutputName": "Out", 1110 | "m_StageCapability": 3, 1111 | "m_Value": { 1112 | "x": 0.0, 1113 | "y": 0.0, 1114 | "z": 0.0, 1115 | "w": 0.0 1116 | }, 1117 | "m_DefaultValue": { 1118 | "x": 0.0, 1119 | "y": 0.0, 1120 | "z": 0.0, 1121 | "w": 0.0 1122 | } 1123 | } 1124 | 1125 | { 1126 | "m_SGVersion": 0, 1127 | "m_Type": "UnityEditor.ShaderGraph.BlockNode", 1128 | "m_ObjectId": "83f067dcda51414ab237ea30ec41f9e5", 1129 | "m_Group": { 1130 | "m_Id": "" 1131 | }, 1132 | "m_Name": "VertexDescription.Position", 1133 | "m_DrawState": { 1134 | "m_Expanded": true, 1135 | "m_Position": { 1136 | "serializedVersion": "2", 1137 | "x": 0.0, 1138 | "y": 0.0, 1139 | "width": 0.0, 1140 | "height": 0.0 1141 | } 1142 | }, 1143 | "m_Slots": [ 1144 | { 1145 | "m_Id": "215be3f31cc641399a8213d0ac20e21c" 1146 | } 1147 | ], 1148 | "synonyms": [], 1149 | "m_Precision": 0, 1150 | "m_PreviewExpanded": true, 1151 | "m_DismissedVersion": 0, 1152 | "m_PreviewMode": 0, 1153 | "m_CustomColors": { 1154 | "m_SerializableColors": [] 1155 | }, 1156 | "m_SerializedDescriptor": "VertexDescription.Position" 1157 | } 1158 | 1159 | { 1160 | "m_SGVersion": 0, 1161 | "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", 1162 | "m_ObjectId": "8638554b33bd4066b7af2f1dbc42a947", 1163 | "m_Id": 0, 1164 | "m_DisplayName": "Emission", 1165 | "m_SlotType": 0, 1166 | "m_Hidden": false, 1167 | "m_ShaderOutputName": "Emission", 1168 | "m_StageCapability": 2, 1169 | "m_Value": { 1170 | "x": 0.0, 1171 | "y": 0.0, 1172 | "z": 0.0 1173 | }, 1174 | "m_DefaultValue": { 1175 | "x": 0.0, 1176 | "y": 0.0, 1177 | "z": 0.0 1178 | }, 1179 | "m_Labels": [], 1180 | "m_ColorMode": 1, 1181 | "m_DefaultColor": { 1182 | "r": 0.0, 1183 | "g": 0.0, 1184 | "b": 0.0, 1185 | "a": 1.0 1186 | } 1187 | } 1188 | 1189 | { 1190 | "m_SGVersion": 0, 1191 | "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", 1192 | "m_ObjectId": "8b0eed1cc23c456abc65704e08fbcfc7", 1193 | "m_Id": 0, 1194 | "m_DisplayName": "A", 1195 | "m_SlotType": 0, 1196 | "m_Hidden": false, 1197 | "m_ShaderOutputName": "A", 1198 | "m_StageCapability": 3, 1199 | "m_Value": { 1200 | "x": 0.0, 1201 | "y": 0.0, 1202 | "z": 0.0, 1203 | "w": 0.0 1204 | }, 1205 | "m_DefaultValue": { 1206 | "x": 0.0, 1207 | "y": 0.0, 1208 | "z": 0.0, 1209 | "w": 0.0 1210 | } 1211 | } 1212 | 1213 | { 1214 | "m_SGVersion": 0, 1215 | "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget", 1216 | "m_ObjectId": "91ef0dc16a014ea9bf9a4466f95dab88", 1217 | "m_ActiveSubTarget": { 1218 | "m_Id": "7ac9789bdabc4d54871377381132784f" 1219 | }, 1220 | "m_Datas": [ 1221 | { 1222 | "m_Id": "411fc952dafd47f9bc752b98449be116" 1223 | }, 1224 | { 1225 | "m_Id": "99fe16d7b1d9473c8abaef836da47611" 1226 | }, 1227 | { 1228 | "m_Id": "0995e9756eb84cb38e33731fdded3129" 1229 | } 1230 | ], 1231 | "m_CustomEditorGUI": "", 1232 | "m_SupportVFX": true, 1233 | "m_SupportLineRendering": false 1234 | } 1235 | 1236 | { 1237 | "m_SGVersion": 0, 1238 | "m_Type": "UnityEditor.ShaderGraph.LerpNode", 1239 | "m_ObjectId": "9446ba6580af49cd86edb243e3332caa", 1240 | "m_Group": { 1241 | "m_Id": "" 1242 | }, 1243 | "m_Name": "Lerp", 1244 | "m_DrawState": { 1245 | "m_Expanded": true, 1246 | "m_Position": { 1247 | "serializedVersion": "2", 1248 | "x": -233.5, 1249 | "y": 407.5, 1250 | "width": 129.5, 1251 | "height": 142.0 1252 | } 1253 | }, 1254 | "m_Slots": [ 1255 | { 1256 | "m_Id": "8b0eed1cc23c456abc65704e08fbcfc7" 1257 | }, 1258 | { 1259 | "m_Id": "4463407c7e2b487a855963a0582a3bc8" 1260 | }, 1261 | { 1262 | "m_Id": "c85671fd179b409d835ed31b8b21fd86" 1263 | }, 1264 | { 1265 | "m_Id": "c30a16f4fdfe4251be71da82b1750df4" 1266 | } 1267 | ], 1268 | "synonyms": [ 1269 | "mix", 1270 | "blend", 1271 | "linear interpolate" 1272 | ], 1273 | "m_Precision": 0, 1274 | "m_PreviewExpanded": false, 1275 | "m_DismissedVersion": 0, 1276 | "m_PreviewMode": 0, 1277 | "m_CustomColors": { 1278 | "m_SerializableColors": [] 1279 | } 1280 | } 1281 | 1282 | { 1283 | "m_SGVersion": 0, 1284 | "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", 1285 | "m_ObjectId": "9894af32323a4f83adacffc786c1bd51", 1286 | "m_Id": 0, 1287 | "m_DisplayName": "ArcParam", 1288 | "m_SlotType": 0, 1289 | "m_Hidden": false, 1290 | "m_ShaderOutputName": "ArcParam", 1291 | "m_StageCapability": 1, 1292 | "m_Value": 0.0, 1293 | "m_DefaultValue": 0.0, 1294 | "m_Labels": [] 1295 | } 1296 | 1297 | { 1298 | "m_SGVersion": 0, 1299 | "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData", 1300 | "m_ObjectId": "99fe16d7b1d9473c8abaef836da47611", 1301 | "m_Distortion": false, 1302 | "m_DistortionMode": 0, 1303 | "m_DistortionDepthTest": true, 1304 | "m_AddPrecomputedVelocity": false, 1305 | "m_TransparentWritesMotionVec": false, 1306 | "m_DepthOffset": false, 1307 | "m_ConservativeDepthOffset": false, 1308 | "m_TransparencyFog": true, 1309 | "m_AlphaTestShadow": false, 1310 | "m_BackThenFrontRendering": false, 1311 | "m_TransparentDepthPrepass": false, 1312 | "m_TransparentDepthPostpass": false, 1313 | "m_TransparentPerPixelSorting": false, 1314 | "m_SupportLodCrossFade": false 1315 | } 1316 | 1317 | { 1318 | "m_SGVersion": 1, 1319 | "m_Type": "UnityEditor.ShaderGraph.PositionNode", 1320 | "m_ObjectId": "9c2fb42b010c40c3b932a5bdf93894cc", 1321 | "m_Group": { 1322 | "m_Id": "" 1323 | }, 1324 | "m_Name": "Position", 1325 | "m_DrawState": { 1326 | "m_Expanded": true, 1327 | "m_Position": { 1328 | "serializedVersion": "2", 1329 | "x": -539.5, 1330 | "y": 117.5, 1331 | "width": 206.0, 1332 | "height": 130.5 1333 | } 1334 | }, 1335 | "m_Slots": [ 1336 | { 1337 | "m_Id": "6f92d021523c4ca1a585747170310d38" 1338 | } 1339 | ], 1340 | "synonyms": [ 1341 | "location" 1342 | ], 1343 | "m_Precision": 1, 1344 | "m_PreviewExpanded": false, 1345 | "m_DismissedVersion": 0, 1346 | "m_PreviewMode": 2, 1347 | "m_CustomColors": { 1348 | "m_SerializableColors": [] 1349 | }, 1350 | "m_Space": 0, 1351 | "m_PositionSource": 0 1352 | } 1353 | 1354 | { 1355 | "m_SGVersion": 0, 1356 | "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", 1357 | "m_ObjectId": "9f1882bd47a84051860758c5a65be64b", 1358 | "m_Id": 0, 1359 | "m_DisplayName": "Base Color", 1360 | "m_SlotType": 0, 1361 | "m_Hidden": false, 1362 | "m_ShaderOutputName": "BaseColor", 1363 | "m_StageCapability": 2, 1364 | "m_Value": { 1365 | "x": 0.5, 1366 | "y": 0.5, 1367 | "z": 0.5 1368 | }, 1369 | "m_DefaultValue": { 1370 | "x": 0.5, 1371 | "y": 0.5, 1372 | "z": 0.5 1373 | }, 1374 | "m_Labels": [], 1375 | "m_ColorMode": 0, 1376 | "m_DefaultColor": { 1377 | "r": 0.5, 1378 | "g": 0.5, 1379 | "b": 0.5, 1380 | "a": 1.0 1381 | } 1382 | } 1383 | 1384 | { 1385 | "m_SGVersion": 0, 1386 | "m_Type": "UnityEditor.ShaderGraph.CategoryData", 1387 | "m_ObjectId": "a4233d86997844c684dc184cae475b7d", 1388 | "m_Name": "", 1389 | "m_ChildObjectList": [ 1390 | { 1391 | "m_Id": "f9e9ce98ec864861a95d24f98c9ae03d" 1392 | } 1393 | ] 1394 | } 1395 | 1396 | { 1397 | "m_SGVersion": 0, 1398 | "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", 1399 | "m_ObjectId": "a5838b4e90ce481bb47fcd8d38e1270f", 1400 | "m_Id": 0, 1401 | "m_DisplayName": "Out", 1402 | "m_SlotType": 1, 1403 | "m_Hidden": false, 1404 | "m_ShaderOutputName": "Out", 1405 | "m_StageCapability": 3, 1406 | "m_Value": { 1407 | "x": 0.0, 1408 | "y": 0.0, 1409 | "z": 0.0, 1410 | "w": 0.0 1411 | }, 1412 | "m_DefaultValue": { 1413 | "x": 0.0, 1414 | "y": 0.0, 1415 | "z": 0.0, 1416 | "w": 0.0 1417 | }, 1418 | "m_Labels": [] 1419 | } 1420 | 1421 | { 1422 | "m_SGVersion": 0, 1423 | "m_Type": "UnityEditor.ShaderGraph.BlockNode", 1424 | "m_ObjectId": "aa4a5cd31a4640e1b6f4b03c864de26e", 1425 | "m_Group": { 1426 | "m_Id": "" 1427 | }, 1428 | "m_Name": "SurfaceDescription.Emission", 1429 | "m_DrawState": { 1430 | "m_Expanded": true, 1431 | "m_Position": { 1432 | "serializedVersion": "2", 1433 | "x": 0.0, 1434 | "y": 0.0, 1435 | "width": 0.0, 1436 | "height": 0.0 1437 | } 1438 | }, 1439 | "m_Slots": [ 1440 | { 1441 | "m_Id": "8638554b33bd4066b7af2f1dbc42a947" 1442 | } 1443 | ], 1444 | "synonyms": [], 1445 | "m_Precision": 0, 1446 | "m_PreviewExpanded": true, 1447 | "m_DismissedVersion": 0, 1448 | "m_PreviewMode": 0, 1449 | "m_CustomColors": { 1450 | "m_SerializableColors": [] 1451 | }, 1452 | "m_SerializedDescriptor": "SurfaceDescription.Emission" 1453 | } 1454 | 1455 | { 1456 | "m_SGVersion": 0, 1457 | "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", 1458 | "m_ObjectId": "c30a16f4fdfe4251be71da82b1750df4", 1459 | "m_Id": 3, 1460 | "m_DisplayName": "Out", 1461 | "m_SlotType": 1, 1462 | "m_Hidden": false, 1463 | "m_ShaderOutputName": "Out", 1464 | "m_StageCapability": 3, 1465 | "m_Value": { 1466 | "x": 0.0, 1467 | "y": 0.0, 1468 | "z": 0.0, 1469 | "w": 0.0 1470 | }, 1471 | "m_DefaultValue": { 1472 | "x": 0.0, 1473 | "y": 0.0, 1474 | "z": 0.0, 1475 | "w": 0.0 1476 | } 1477 | } 1478 | 1479 | { 1480 | "m_SGVersion": 0, 1481 | "m_Type": "UnityEditor.ShaderGraph.BlockNode", 1482 | "m_ObjectId": "c64e5af66cc441e7a56ed3e27410bacd", 1483 | "m_Group": { 1484 | "m_Id": "" 1485 | }, 1486 | "m_Name": "VertexDescription.CustomInterpolator", 1487 | "m_DrawState": { 1488 | "m_Expanded": true, 1489 | "m_Position": { 1490 | "serializedVersion": "2", 1491 | "x": 0.0, 1492 | "y": 0.0, 1493 | "width": 0.0, 1494 | "height": 0.0 1495 | } 1496 | }, 1497 | "m_Slots": [ 1498 | { 1499 | "m_Id": "9894af32323a4f83adacffc786c1bd51" 1500 | } 1501 | ], 1502 | "synonyms": [], 1503 | "m_Precision": 0, 1504 | "m_PreviewExpanded": true, 1505 | "m_DismissedVersion": 0, 1506 | "m_PreviewMode": 0, 1507 | "m_CustomColors": { 1508 | "m_SerializableColors": [] 1509 | }, 1510 | "m_SerializedDescriptor": "VertexDescription.ArcParam#1" 1511 | } 1512 | 1513 | { 1514 | "m_SGVersion": 0, 1515 | "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", 1516 | "m_ObjectId": "c85671fd179b409d835ed31b8b21fd86", 1517 | "m_Id": 2, 1518 | "m_DisplayName": "T", 1519 | "m_SlotType": 0, 1520 | "m_Hidden": false, 1521 | "m_ShaderOutputName": "T", 1522 | "m_StageCapability": 3, 1523 | "m_Value": { 1524 | "x": 0.0, 1525 | "y": 0.0, 1526 | "z": 0.0, 1527 | "w": 0.0 1528 | }, 1529 | "m_DefaultValue": { 1530 | "x": 0.0, 1531 | "y": 0.0, 1532 | "z": 0.0, 1533 | "w": 0.0 1534 | } 1535 | } 1536 | 1537 | { 1538 | "m_SGVersion": 0, 1539 | "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", 1540 | "m_ObjectId": "c8d4768cee0a485a9de80602ec1ca0c7", 1541 | "m_Id": 2, 1542 | "m_DisplayName": "Out", 1543 | "m_SlotType": 1, 1544 | "m_Hidden": false, 1545 | "m_ShaderOutputName": "Out", 1546 | "m_StageCapability": 3, 1547 | "m_Value": { 1548 | "x": 0.0, 1549 | "y": 0.0, 1550 | "z": 0.0, 1551 | "w": 0.0 1552 | }, 1553 | "m_DefaultValue": { 1554 | "x": 0.0, 1555 | "y": 0.0, 1556 | "z": 0.0, 1557 | "w": 0.0 1558 | }, 1559 | "m_Labels": [] 1560 | } 1561 | 1562 | { 1563 | "m_SGVersion": 1, 1564 | "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", 1565 | "m_ObjectId": "dddaa3bee9d94b7e88187fb68076fad9", 1566 | "m_Group": { 1567 | "m_Id": "" 1568 | }, 1569 | "m_Name": "GetArcParam (Custom Function)", 1570 | "m_DrawState": { 1571 | "m_Expanded": true, 1572 | "m_Position": { 1573 | "serializedVersion": "2", 1574 | "x": -333.5, 1575 | "y": 117.5, 1576 | "width": 229.5, 1577 | "height": 94.0 1578 | } 1579 | }, 1580 | "m_Slots": [ 1581 | { 1582 | "m_Id": "4db4b9be36004e28bda91ef4d8a287a4" 1583 | }, 1584 | { 1585 | "m_Id": "60b91ee3fd624f9eba7182cd9eac9fb9" 1586 | } 1587 | ], 1588 | "synonyms": [ 1589 | "code", 1590 | "HLSL" 1591 | ], 1592 | "m_Precision": 0, 1593 | "m_PreviewExpanded": false, 1594 | "m_DismissedVersion": 0, 1595 | "m_PreviewMode": 0, 1596 | "m_CustomColors": { 1597 | "m_SerializableColors": [] 1598 | }, 1599 | "m_SourceType": 1, 1600 | "m_FunctionName": "GetArcParam", 1601 | "m_FunctionSource": "", 1602 | "m_FunctionBody": "Output = (atan2(Pos.y, Pos.x) + PI * 0.75) / 1.5 / PI;\nOutput = frac(Output);" 1603 | } 1604 | 1605 | { 1606 | "m_SGVersion": 1, 1607 | "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", 1608 | "m_ObjectId": "f9e9ce98ec864861a95d24f98c9ae03d", 1609 | "m_Guid": { 1610 | "m_GuidSerialized": "3a31e4c1-9286-4b56-b376-90c38d8e7679" 1611 | }, 1612 | "m_Name": "Value", 1613 | "m_DefaultRefNameVersion": 1, 1614 | "m_RefNameGeneratedByDisplayName": "Value", 1615 | "m_DefaultReferenceName": "_Value", 1616 | "m_OverrideReferenceName": "", 1617 | "m_GeneratePropertyBlock": true, 1618 | "m_UseCustomSlotLabel": false, 1619 | "m_CustomSlotLabel": "", 1620 | "m_DismissedVersion": 0, 1621 | "m_Precision": 0, 1622 | "overrideHLSLDeclaration": false, 1623 | "hlslDeclarationOverride": 0, 1624 | "m_Hidden": false, 1625 | "m_Value": 1.0, 1626 | "m_FloatType": 1, 1627 | "m_RangeValues": { 1628 | "x": 0.0, 1629 | "y": 1.0 1630 | } 1631 | } 1632 | 1633 | -------------------------------------------------------------------------------- /Assets/Materials/Meter.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 971e107ea1d644e1b9af42106ffb71d8 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /Assets/Materials/Prefab.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-8685280664335814701 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: da692e001514ec24dbc4cca1949ff7e8, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 13 16 | hdPluginSubTargetMaterialVersions: 17 | m_Keys: [] 18 | m_Values: 19 | --- !u!21 &2100000 20 | Material: 21 | serializedVersion: 8 22 | m_ObjectHideFlags: 0 23 | m_CorrespondingSourceObject: {fileID: 0} 24 | m_PrefabInstance: {fileID: 0} 25 | m_PrefabAsset: {fileID: 0} 26 | m_Name: Prefab 27 | m_Shader: {fileID: 4800000, guid: 6e4ae4064600d784cac1e41a9e6f2e59, type: 3} 28 | m_Parent: {fileID: 0} 29 | m_ModifiedSerializedProperties: 0 30 | m_ValidKeywords: 31 | - _DISABLE_SSR_TRANSPARENT 32 | - _NORMALMAP_TANGENT_SPACE 33 | m_InvalidKeywords: [] 34 | m_LightmapFlags: 4 35 | m_EnableInstancingVariants: 0 36 | m_DoubleSidedGI: 0 37 | m_CustomRenderQueue: 2225 38 | stringTagMap: {} 39 | disabledShaderPasses: 40 | - TransparentDepthPrepass 41 | - TransparentDepthPostpass 42 | - TransparentBackface 43 | - RayTracingPrepass 44 | - MOTIONVECTORS 45 | m_LockedProperties: 46 | m_SavedProperties: 47 | serializedVersion: 3 48 | m_TexEnvs: 49 | - _AnisotropyMap: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | - _BaseColorMap: 54 | m_Texture: {fileID: 0} 55 | m_Scale: {x: 1, y: 1} 56 | m_Offset: {x: 0, y: 0} 57 | - _BentNormalMap: 58 | m_Texture: {fileID: 0} 59 | m_Scale: {x: 1, y: 1} 60 | m_Offset: {x: 0, y: 0} 61 | - _BentNormalMapOS: 62 | m_Texture: {fileID: 0} 63 | m_Scale: {x: 1, y: 1} 64 | m_Offset: {x: 0, y: 0} 65 | - _CoatMaskMap: 66 | m_Texture: {fileID: 0} 67 | m_Scale: {x: 1, y: 1} 68 | m_Offset: {x: 0, y: 0} 69 | - _DetailMap: 70 | m_Texture: {fileID: 0} 71 | m_Scale: {x: 1, y: 1} 72 | m_Offset: {x: 0, y: 0} 73 | - _EmissiveColorMap: 74 | m_Texture: {fileID: 0} 75 | m_Scale: {x: 1, y: 1} 76 | m_Offset: {x: 0, y: 0} 77 | - _HeightMap: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | - _IridescenceMaskMap: 82 | m_Texture: {fileID: 0} 83 | m_Scale: {x: 1, y: 1} 84 | m_Offset: {x: 0, y: 0} 85 | - _IridescenceThicknessMap: 86 | m_Texture: {fileID: 0} 87 | m_Scale: {x: 1, y: 1} 88 | m_Offset: {x: 0, y: 0} 89 | - _MainTex: 90 | m_Texture: {fileID: 0} 91 | m_Scale: {x: 1, y: 1} 92 | m_Offset: {x: 0, y: 0} 93 | - _MaskMap: 94 | m_Texture: {fileID: 0} 95 | m_Scale: {x: 1, y: 1} 96 | m_Offset: {x: 0, y: 0} 97 | - _NormalMap: 98 | m_Texture: {fileID: 0} 99 | m_Scale: {x: 1, y: 1} 100 | m_Offset: {x: 0, y: 0} 101 | - _NormalMapOS: 102 | m_Texture: {fileID: 0} 103 | m_Scale: {x: 1, y: 1} 104 | m_Offset: {x: 0, y: 0} 105 | - _SpecularColorMap: 106 | m_Texture: {fileID: 0} 107 | m_Scale: {x: 1, y: 1} 108 | m_Offset: {x: 0, y: 0} 109 | - _SubsurfaceMaskMap: 110 | m_Texture: {fileID: 0} 111 | m_Scale: {x: 1, y: 1} 112 | m_Offset: {x: 0, y: 0} 113 | - _TangentMap: 114 | m_Texture: {fileID: 0} 115 | m_Scale: {x: 1, y: 1} 116 | m_Offset: {x: 0, y: 0} 117 | - _TangentMapOS: 118 | m_Texture: {fileID: 0} 119 | m_Scale: {x: 1, y: 1} 120 | m_Offset: {x: 0, y: 0} 121 | - _ThicknessMap: 122 | m_Texture: {fileID: 0} 123 | m_Scale: {x: 1, y: 1} 124 | m_Offset: {x: 0, y: 0} 125 | - _TransmissionMaskMap: 126 | m_Texture: {fileID: 0} 127 | m_Scale: {x: 1, y: 1} 128 | m_Offset: {x: 0, y: 0} 129 | - _TransmittanceColorMap: 130 | m_Texture: {fileID: 0} 131 | m_Scale: {x: 1, y: 1} 132 | m_Offset: {x: 0, y: 0} 133 | - unity_Lightmaps: 134 | m_Texture: {fileID: 0} 135 | m_Scale: {x: 1, y: 1} 136 | m_Offset: {x: 0, y: 0} 137 | - unity_LightmapsInd: 138 | m_Texture: {fileID: 0} 139 | m_Scale: {x: 1, y: 1} 140 | m_Offset: {x: 0, y: 0} 141 | - unity_ShadowMasks: 142 | m_Texture: {fileID: 0} 143 | m_Scale: {x: 1, y: 1} 144 | m_Offset: {x: 0, y: 0} 145 | m_Ints: [] 146 | m_Floats: 147 | - _AORemapMax: 1 148 | - _AORemapMin: 0 149 | - _ATDistance: 1 150 | - _AddPrecomputedVelocity: 0 151 | - _AlbedoAffectEmissive: 0 152 | - _AlphaCutoff: 0.5 153 | - _AlphaCutoffEnable: 0 154 | - _AlphaCutoffPostpass: 0.5 155 | - _AlphaCutoffPrepass: 0.5 156 | - _AlphaCutoffShadow: 0.5 157 | - _AlphaDstBlend: 0 158 | - _AlphaRemapMax: 1 159 | - _AlphaRemapMin: 0 160 | - _AlphaSrcBlend: 1 161 | - _Anisotropy: 0 162 | - _BlendMode: 0 163 | - _CoatMask: 0 164 | - _CullMode: 2 165 | - _CullModeForward: 2 166 | - _Cutoff: 0.5 167 | - _DepthOffsetEnable: 0 168 | - _DetailAlbedoScale: 1 169 | - _DetailNormalScale: 1 170 | - _DetailSmoothnessScale: 1 171 | - _DiffusionProfile: 0 172 | - _DiffusionProfileHash: 0 173 | - _DisplacementLockObjectScale: 1 174 | - _DisplacementLockTilingScale: 1 175 | - _DisplacementMode: 0 176 | - _DoubleSidedEnable: 0 177 | - _DoubleSidedGIMode: 0 178 | - _DoubleSidedNormalMode: 1 179 | - _DstBlend: 0 180 | - _DstBlend2: 0 181 | - _EmissiveColorMode: 1 182 | - _EmissiveExposureWeight: 1 183 | - _EmissiveIntensity: 1 184 | - _EmissiveIntensityUnit: 0 185 | - _EnableBlendModePreserveSpecularLighting: 1 186 | - _EnableFogOnTransparent: 1 187 | - _EnableGeometricSpecularAA: 0 188 | - _EnergyConservingSpecularColor: 1 189 | - _HeightAmplitude: 0.02 190 | - _HeightCenter: 0.5 191 | - _HeightMapParametrization: 0 192 | - _HeightMax: 1 193 | - _HeightMin: -1 194 | - _HeightOffset: 0 195 | - _HeightPoMAmplitude: 2 196 | - _HeightTessAmplitude: 2 197 | - _HeightTessCenter: 0.5 198 | - _InvTilingScale: 1 199 | - _Ior: 1.5 200 | - _IridescenceMask: 1 201 | - _IridescenceThickness: 1 202 | - _LinkDetailsWithBase: 1 203 | - _MaterialID: 1 204 | - _Metallic: 0 205 | - _MetallicRemapMax: 1 206 | - _MetallicRemapMin: 0 207 | - _NormalMapSpace: 0 208 | - _NormalScale: 1 209 | - _ObjectSpaceUVMapping: 0 210 | - _ObjectSpaceUVMappingEmissive: 0 211 | - _OpaqueCullMode: 2 212 | - _PPDLodThreshold: 5 213 | - _PPDMaxSamples: 15 214 | - _PPDMinSamples: 5 215 | - _PPDPrimitiveLength: 1 216 | - _PPDPrimitiveWidth: 1 217 | - _PerPixelSorting: 0 218 | - _RayTracing: 0 219 | - _ReceivesSSR: 1 220 | - _ReceivesSSRTransparent: 0 221 | - _RefractionModel: 0 222 | - _Smoothness: 0 223 | - _SmoothnessRemapMax: 1 224 | - _SmoothnessRemapMin: 0 225 | - _SpecularAAScreenSpaceVariance: 0.1 226 | - _SpecularAAThreshold: 0.2 227 | - _SpecularOcclusionMode: 1 228 | - _SrcBlend: 1 229 | - _StencilRef: 0 230 | - _StencilRefDepth: 8 231 | - _StencilRefGBuffer: 10 232 | - _StencilRefMV: 40 233 | - _StencilWriteMask: 6 234 | - _StencilWriteMaskDepth: 9 235 | - _StencilWriteMaskGBuffer: 15 236 | - _StencilWriteMaskMV: 41 237 | - _SubsurfaceMask: 1 238 | - _SupportDecals: 1 239 | - _SurfaceType: 0 240 | - _TexWorldScale: 1 241 | - _TexWorldScaleEmissive: 1 242 | - _Thickness: 1 243 | - _TransmissionEnable: 1 244 | - _TransmissionMask: 1 245 | - _TransparentBackfaceEnable: 0 246 | - _TransparentCullMode: 2 247 | - _TransparentDepthPostpassEnable: 0 248 | - _TransparentDepthPrepassEnable: 0 249 | - _TransparentSortPriority: 0 250 | - _TransparentWritingMotionVec: 0 251 | - _TransparentZWrite: 0 252 | - _UVBase: 0 253 | - _UVDetail: 0 254 | - _UVEmissive: 0 255 | - _UseEmissiveIntensity: 0 256 | - _UseShadowThreshold: 0 257 | - _ZTestDepthEqualForOpaque: 3 258 | - _ZTestGBuffer: 4 259 | - _ZTestTransparent: 4 260 | - _ZWrite: 1 261 | m_Colors: 262 | - _BaseColor: {r: 0, g: 0.6896553, b: 1, a: 1} 263 | - _Color: {r: 0, g: 0.6896553, b: 1, a: 1} 264 | - _DiffusionProfileAsset: {r: 0, g: 0, b: 0, a: 0} 265 | - _DoubleSidedConstants: {r: 1, g: 1, b: -1, a: 0} 266 | - _EmissionColor: {r: 1, g: 1, b: 1, a: 1} 267 | - _EmissiveColor: {r: 0, g: 0, b: 0, a: 1} 268 | - _EmissiveColorLDR: {r: 0, g: 0, b: 0, a: 1} 269 | - _InvPrimScale: {r: 1, g: 1, b: 0, a: 0} 270 | - _IridescenceThicknessRemap: {r: 0, g: 1, b: 0, a: 0} 271 | - _SpecularColor: {r: 1, g: 1, b: 1, a: 1} 272 | - _ThicknessRemap: {r: 0, g: 1, b: 0, a: 0} 273 | - _TransmittanceColor: {r: 1, g: 1, b: 1, a: 1} 274 | - _UVDetailsMappingMask: {r: 1, g: 0, b: 0, a: 0} 275 | - _UVMappingMask: {r: 1, g: 0, b: 0, a: 0} 276 | - _UVMappingMaskEmissive: {r: 1, g: 0, b: 0, a: 0} 277 | m_BuildTextureStacks: [] 278 | m_AllowLocking: 1 279 | -------------------------------------------------------------------------------- /Assets/Materials/Prefab.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc83fce2c92394527909ba8b869794a2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Meshes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de7a4187d2f6f4d2d88b9513989e6d6d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Meshes/Arc.metamesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/AsyncInstAnim/09a73ceaee4104af94ab70d13f0fc7b1aafc70f6/Assets/Meshes/Arc.metamesh -------------------------------------------------------------------------------- /Assets/Meshes/Arc.metamesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4123f428afb4a4b9291f5525b87dde3e 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: a8b5f06e412d587cbac1226722904238, type: 3} 11 | _shape: 6 12 | _plane: 13 | Size: 14 | x: 1 15 | y: 1 16 | Subdivisions: 17 | x: 2 18 | y: 2 19 | Axis: 1 20 | DoubleSided: 0 21 | _box: 22 | Width: 1 23 | Height: 1 24 | Depth: 1 25 | _sphere: 26 | Radius: 1 27 | Columns: 24 28 | Rows: 12 29 | Axis: 1 30 | _icosphere: 31 | Radius: 1 32 | Subdivision: 2 33 | _cylinder: 34 | TopRadius: 1 35 | BottomRadius: 1 36 | Height: 1 37 | Columns: 24 38 | Rows: 12 39 | Axis: 1 40 | Caps: 1 41 | _roundedBox: 42 | Width: 1 43 | Height: 1 44 | Depth: 1 45 | Divisions: 3 46 | Radius: 0.1 47 | _ring: 48 | Radius: 1 49 | Width: 0.8 50 | Angle: 0.75 51 | Segments: 64 52 | Axis: 2 53 | DoubleSided: 0 54 | _disc: 55 | Radius: 1 56 | Angle: 1 57 | Segments: 32 58 | Axis: 2 59 | DoubleSided: 0 60 | _teapot: 61 | Subdivision: 10 62 | _triangle: 63 | Vertex1: 64 | x: 0 65 | y: 0 66 | z: 0 67 | Vertex2: 68 | x: 0 69 | y: 1 70 | z: 0 71 | Vertex3: 72 | x: 1 73 | y: 0 74 | z: 0 75 | DoubleSided: 0 76 | _generateLightmapUVs: 0 77 | _readWriteMeshes: 0 78 | -------------------------------------------------------------------------------- /Assets/UI.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 018e6fd1ba50b4106bb369c8856f528a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UI/DefaultTheme.tss: -------------------------------------------------------------------------------- 1 | @import url("unity-theme://default"); -------------------------------------------------------------------------------- /Assets/UI/DefaultTheme.tss.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efa04393280494354af20940e01e41d9 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 12388, guid: 0000000000000000e000000000000000, type: 0} 11 | disableValidation: 0 12 | -------------------------------------------------------------------------------- /Assets/UI/Inter_18pt-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/AsyncInstAnim/09a73ceaee4104af94ab70d13f0fc7b1aafc70f6/Assets/UI/Inter_18pt-Thin.ttf -------------------------------------------------------------------------------- /Assets/UI/Inter_18pt-Thin.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0a2e181eedb054b2b93e8eb8064c073e 3 | TrueTypeFontImporter: 4 | externalObjects: {} 5 | serializedVersion: 4 6 | fontSize: 16 7 | forceTextureCase: -2 8 | characterSpacing: 0 9 | characterPadding: 1 10 | includeFontData: 1 11 | fontNames: 12 | - Inter 18pt 13 | fallbackFontReferences: [] 14 | customCharacters: 15 | fontRenderingMode: 0 16 | ascentCalculationMode: 1 17 | useLegacyBoundsCalculation: 0 18 | shouldRoundAdvanceValue: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /Assets/UI/PanelSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 19101, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: PanelSettings 14 | m_EditorClassIdentifier: 15 | themeUss: {fileID: -4733365628477956816, guid: efa04393280494354af20940e01e41d9, type: 3} 16 | m_DisableNoThemeWarning: 0 17 | m_TargetTexture: {fileID: 0} 18 | m_RenderMode: 0 19 | m_WorldSpaceLayer: 0 20 | m_ScaleMode: 1 21 | m_ReferenceSpritePixelsPerUnit: 100 22 | m_PixelsPerUnit: 100 23 | m_Scale: 1 24 | m_ReferenceDpi: 96 25 | m_FallbackDpi: 96 26 | m_ReferenceResolution: {x: 1200, y: 800} 27 | m_ScreenMatchMode: 0 28 | m_Match: 0 29 | m_SortingOrder: 0 30 | m_TargetDisplay: 0 31 | m_BindingLogLevel: 0 32 | m_ClearDepthStencil: 1 33 | m_ClearColor: 0 34 | m_ColorClearValue: {r: 0, g: 0, b: 0, a: 0} 35 | m_VertexBudget: 0 36 | m_DynamicAtlasSettings: 37 | m_MinAtlasSize: 64 38 | m_MaxAtlasSize: 4096 39 | m_MaxSubTextureSize: 64 40 | m_ActiveFilters: 31 41 | m_AtlasBlitShader: {fileID: 9101, guid: 0000000000000000f000000000000000, type: 0} 42 | m_RuntimeShader: {fileID: 9100, guid: 0000000000000000f000000000000000, type: 0} 43 | m_RuntimeWorldShader: {fileID: 9102, guid: 0000000000000000f000000000000000, type: 0} 44 | m_ICUDataAsset: {fileID: 0} 45 | forceGammaRendering: 0 46 | textSettings: {fileID: 0} 47 | -------------------------------------------------------------------------------- /Assets/UI/PanelSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f58954092c8d48349c784e266a23a57 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/UI/UI.uxml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Assets/UI/UI.uxml.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 196627ec343744091ad1be66d4706078 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0} 11 | -------------------------------------------------------------------------------- /Assets/VFX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e1835c99b4f10485a81ec73db3197d09 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/VFX/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/AsyncInstAnim/09a73ceaee4104af94ab70d13f0fc7b1aafc70f6/Assets/VFX/Arrow.png -------------------------------------------------------------------------------- /Assets/VFX/Arrow.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb62287b3ec364c1fbc66872156799f6 3 | TextureImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 13 7 | mipmaps: 8 | mipMapMode: 0 9 | enableMipMap: 1 10 | sRGBTexture: 1 11 | linearTexture: 0 12 | fadeOut: 0 13 | borderMipMap: 0 14 | mipMapsPreserveCoverage: 0 15 | alphaTestReferenceValue: 0.5 16 | mipMapFadeDistanceStart: 1 17 | mipMapFadeDistanceEnd: 3 18 | bumpmap: 19 | convertToNormalMap: 0 20 | externalNormalMap: 0 21 | heightScale: 0.25 22 | normalMapFilter: 0 23 | flipGreenChannel: 0 24 | isReadable: 0 25 | streamingMipmaps: 0 26 | streamingMipmapsPriority: 0 27 | vTOnly: 0 28 | ignoreMipmapLimit: 0 29 | grayScaleToAlpha: 0 30 | generateCubemap: 6 31 | cubemapConvolution: 0 32 | seamlessCubemap: 0 33 | textureFormat: 1 34 | maxTextureSize: 2048 35 | textureSettings: 36 | serializedVersion: 2 37 | filterMode: 1 38 | aniso: 1 39 | mipBias: 0 40 | wrapU: 1 41 | wrapV: 1 42 | wrapW: 1 43 | nPOTScale: 1 44 | lightmap: 0 45 | compressionQuality: 50 46 | spriteMode: 0 47 | spriteExtrude: 1 48 | spriteMeshType: 1 49 | alignment: 0 50 | spritePivot: {x: 0.5, y: 0.5} 51 | spritePixelsToUnits: 100 52 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 53 | spriteGenerateFallbackPhysicsShape: 1 54 | alphaUsage: 1 55 | alphaIsTransparency: 1 56 | spriteTessellationDetail: -1 57 | textureType: 0 58 | textureShape: 1 59 | singleChannelComponent: 0 60 | flipbookRows: 1 61 | flipbookColumns: 1 62 | maxTextureSizeSet: 0 63 | compressionQualitySet: 0 64 | textureFormatSet: 0 65 | ignorePngGamma: 0 66 | applyGammaDecoding: 0 67 | swizzle: 50462976 68 | cookieLightType: 0 69 | platformSettings: 70 | - serializedVersion: 4 71 | buildTarget: DefaultTexturePlatform 72 | maxTextureSize: 2048 73 | resizeAlgorithm: 0 74 | textureFormat: -1 75 | textureCompression: 1 76 | compressionQuality: 50 77 | crunchedCompression: 0 78 | allowsAlphaSplitting: 0 79 | overridden: 0 80 | ignorePlatformSupport: 0 81 | androidETC2FallbackOverride: 0 82 | forceMaximumCompressionQuality_BC6H_BC7: 0 83 | - serializedVersion: 4 84 | buildTarget: Standalone 85 | maxTextureSize: 2048 86 | resizeAlgorithm: 0 87 | textureFormat: -1 88 | textureCompression: 1 89 | compressionQuality: 50 90 | crunchedCompression: 0 91 | allowsAlphaSplitting: 0 92 | overridden: 0 93 | ignorePlatformSupport: 0 94 | androidETC2FallbackOverride: 0 95 | forceMaximumCompressionQuality_BC6H_BC7: 0 96 | - serializedVersion: 4 97 | buildTarget: WebGL 98 | maxTextureSize: 2048 99 | resizeAlgorithm: 0 100 | textureFormat: -1 101 | textureCompression: 1 102 | compressionQuality: 50 103 | crunchedCompression: 0 104 | allowsAlphaSplitting: 0 105 | overridden: 0 106 | ignorePlatformSupport: 0 107 | androidETC2FallbackOverride: 0 108 | forceMaximumCompressionQuality_BC6H_BC7: 0 109 | - serializedVersion: 4 110 | buildTarget: iOS 111 | maxTextureSize: 2048 112 | resizeAlgorithm: 0 113 | textureFormat: -1 114 | textureCompression: 1 115 | compressionQuality: 50 116 | crunchedCompression: 0 117 | allowsAlphaSplitting: 0 118 | overridden: 0 119 | ignorePlatformSupport: 0 120 | androidETC2FallbackOverride: 0 121 | forceMaximumCompressionQuality_BC6H_BC7: 0 122 | spriteSheet: 123 | serializedVersion: 2 124 | sprites: [] 125 | outline: [] 126 | customData: 127 | physicsShape: [] 128 | bones: [] 129 | spriteID: 130 | internalID: 0 131 | vertices: [] 132 | indices: 133 | edges: [] 134 | weights: [] 135 | secondaryTextures: [] 136 | spriteCustomMetadata: 137 | entries: [] 138 | nameFileIdTable: {} 139 | mipmapLimitGroupName: 140 | pSDRemoveMatte: 0 141 | userData: 142 | assetBundleName: 143 | assetBundleVariant: 144 | -------------------------------------------------------------------------------- /Assets/VFX/Arrow.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4debefc58705f47468508cbbc68cce49 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | serializedVersion: 1 6 | template: 7 | name: 8 | category: 9 | description: 10 | icon: {instanceID: 0} 11 | thumbnail: {instanceID: 0} 12 | userData: 13 | assetBundleName: 14 | assetBundleVariant: 15 | -------------------------------------------------------------------------------- /Assets/VFX/Clones.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9aab714908b294e199cfdb654abb154a 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | serializedVersion: 1 6 | template: 7 | name: 8 | category: 9 | description: 10 | icon: {instanceID: 0} 11 | thumbnail: {instanceID: 0} 12 | userData: 13 | assetBundleName: 14 | assetBundleVariant: 15 | -------------------------------------------------------------------------------- /Assets/VFX/Meter.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c664148dc237422f816786a663c63c3 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | serializedVersion: 1 6 | template: 7 | name: 8 | category: 9 | description: 10 | icon: {instanceID: 0} 11 | thumbnail: {instanceID: 0} 12 | userData: 13 | assetBundleName: 14 | assetBundleVariant: 15 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.inputsystem": "1.11.2", 4 | "com.unity.recorder": "5.1.1", 5 | "com.unity.render-pipelines.high-definition": "17.0.3", 6 | "jp.keijiro.metamesh": "1.2.0" 7 | }, 8 | "scopedRegistries": [ 9 | { 10 | "name": "Keijiro", 11 | "url": "https://registry.npmjs.com", 12 | "scopes": [ 13 | "jp.keijiro" 14 | ] 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.bindings.openimageio": { 4 | "version": "1.0.0", 5 | "depth": 1, 6 | "source": "registry", 7 | "dependencies": { 8 | "com.unity.collections": "1.0.0" 9 | }, 10 | "url": "https://packages.unity.com" 11 | }, 12 | "com.unity.burst": { 13 | "version": "1.8.18", 14 | "depth": 2, 15 | "source": "registry", 16 | "dependencies": { 17 | "com.unity.mathematics": "1.2.1", 18 | "com.unity.modules.jsonserialize": "1.0.0" 19 | }, 20 | "url": "https://packages.unity.com" 21 | }, 22 | "com.unity.collections": { 23 | "version": "2.5.1", 24 | "depth": 1, 25 | "source": "registry", 26 | "dependencies": { 27 | "com.unity.burst": "1.8.17", 28 | "com.unity.test-framework": "1.4.5", 29 | "com.unity.nuget.mono-cecil": "1.11.4", 30 | "com.unity.test-framework.performance": "3.0.3" 31 | }, 32 | "url": "https://packages.unity.com" 33 | }, 34 | "com.unity.ext.nunit": { 35 | "version": "2.0.5", 36 | "depth": 3, 37 | "source": "registry", 38 | "dependencies": {}, 39 | "url": "https://packages.unity.com" 40 | }, 41 | "com.unity.inputsystem": { 42 | "version": "1.11.2", 43 | "depth": 0, 44 | "source": "registry", 45 | "dependencies": { 46 | "com.unity.modules.uielements": "1.0.0" 47 | }, 48 | "url": "https://packages.unity.com" 49 | }, 50 | "com.unity.mathematics": { 51 | "version": "1.3.2", 52 | "depth": 1, 53 | "source": "registry", 54 | "dependencies": {}, 55 | "url": "https://packages.unity.com" 56 | }, 57 | "com.unity.nuget.mono-cecil": { 58 | "version": "1.11.4", 59 | "depth": 2, 60 | "source": "registry", 61 | "dependencies": {}, 62 | "url": "https://packages.unity.com" 63 | }, 64 | "com.unity.recorder": { 65 | "version": "5.1.1", 66 | "depth": 0, 67 | "source": "registry", 68 | "dependencies": { 69 | "com.unity.timeline": "1.0.0", 70 | "com.unity.collections": "1.0.0", 71 | "com.unity.bindings.openimageio": "1.0.0" 72 | }, 73 | "url": "https://packages.unity.com" 74 | }, 75 | "com.unity.render-pipelines.core": { 76 | "version": "17.0.3", 77 | "depth": 1, 78 | "source": "builtin", 79 | "dependencies": { 80 | "com.unity.burst": "1.8.14", 81 | "com.unity.mathematics": "1.3.2", 82 | "com.unity.ugui": "2.0.0", 83 | "com.unity.collections": "2.4.3", 84 | "com.unity.modules.physics": "1.0.0", 85 | "com.unity.modules.terrain": "1.0.0", 86 | "com.unity.modules.jsonserialize": "1.0.0", 87 | "com.unity.rendering.light-transport": "1.0.1" 88 | } 89 | }, 90 | "com.unity.render-pipelines.high-definition": { 91 | "version": "17.0.3", 92 | "depth": 0, 93 | "source": "builtin", 94 | "dependencies": { 95 | "com.unity.modules.video": "1.0.0", 96 | "com.unity.modules.animation": "1.0.0", 97 | "com.unity.modules.imageconversion": "1.0.0", 98 | "com.unity.render-pipelines.core": "17.0.3", 99 | "com.unity.shadergraph": "17.0.3", 100 | "com.unity.visualeffectgraph": "17.0.3", 101 | "com.unity.render-pipelines.high-definition-config": "17.0.3" 102 | } 103 | }, 104 | "com.unity.render-pipelines.high-definition-config": { 105 | "version": "17.0.3", 106 | "depth": 1, 107 | "source": "builtin", 108 | "dependencies": { 109 | "com.unity.render-pipelines.core": "17.0.3" 110 | } 111 | }, 112 | "com.unity.rendering.light-transport": { 113 | "version": "1.0.1", 114 | "depth": 2, 115 | "source": "builtin", 116 | "dependencies": { 117 | "com.unity.collections": "2.2.0", 118 | "com.unity.mathematics": "1.2.4", 119 | "com.unity.modules.terrain": "1.0.0" 120 | } 121 | }, 122 | "com.unity.searcher": { 123 | "version": "4.9.2", 124 | "depth": 2, 125 | "source": "registry", 126 | "dependencies": {}, 127 | "url": "https://packages.unity.com" 128 | }, 129 | "com.unity.shadergraph": { 130 | "version": "17.0.3", 131 | "depth": 1, 132 | "source": "builtin", 133 | "dependencies": { 134 | "com.unity.render-pipelines.core": "17.0.3", 135 | "com.unity.searcher": "4.9.2" 136 | } 137 | }, 138 | "com.unity.test-framework": { 139 | "version": "1.4.5", 140 | "depth": 2, 141 | "source": "registry", 142 | "dependencies": { 143 | "com.unity.ext.nunit": "2.0.3", 144 | "com.unity.modules.imgui": "1.0.0", 145 | "com.unity.modules.jsonserialize": "1.0.0" 146 | }, 147 | "url": "https://packages.unity.com" 148 | }, 149 | "com.unity.test-framework.performance": { 150 | "version": "3.0.3", 151 | "depth": 2, 152 | "source": "registry", 153 | "dependencies": { 154 | "com.unity.test-framework": "1.1.31", 155 | "com.unity.modules.jsonserialize": "1.0.0" 156 | }, 157 | "url": "https://packages.unity.com" 158 | }, 159 | "com.unity.timeline": { 160 | "version": "1.8.7", 161 | "depth": 1, 162 | "source": "registry", 163 | "dependencies": { 164 | "com.unity.modules.audio": "1.0.0", 165 | "com.unity.modules.director": "1.0.0", 166 | "com.unity.modules.animation": "1.0.0", 167 | "com.unity.modules.particlesystem": "1.0.0" 168 | }, 169 | "url": "https://packages.unity.com" 170 | }, 171 | "com.unity.ugui": { 172 | "version": "2.0.0", 173 | "depth": 2, 174 | "source": "builtin", 175 | "dependencies": { 176 | "com.unity.modules.ui": "1.0.0", 177 | "com.unity.modules.imgui": "1.0.0" 178 | } 179 | }, 180 | "com.unity.visualeffectgraph": { 181 | "version": "17.0.3", 182 | "depth": 1, 183 | "source": "builtin", 184 | "dependencies": { 185 | "com.unity.shadergraph": "17.0.3", 186 | "com.unity.render-pipelines.core": "17.0.3" 187 | } 188 | }, 189 | "jp.keijiro.metamesh": { 190 | "version": "1.2.0", 191 | "depth": 0, 192 | "source": "registry", 193 | "dependencies": { 194 | "com.unity.mathematics": "1.2.1" 195 | }, 196 | "url": "https://registry.npmjs.com" 197 | }, 198 | "com.unity.modules.animation": { 199 | "version": "1.0.0", 200 | "depth": 1, 201 | "source": "builtin", 202 | "dependencies": {} 203 | }, 204 | "com.unity.modules.audio": { 205 | "version": "1.0.0", 206 | "depth": 2, 207 | "source": "builtin", 208 | "dependencies": {} 209 | }, 210 | "com.unity.modules.director": { 211 | "version": "1.0.0", 212 | "depth": 2, 213 | "source": "builtin", 214 | "dependencies": { 215 | "com.unity.modules.audio": "1.0.0", 216 | "com.unity.modules.animation": "1.0.0" 217 | } 218 | }, 219 | "com.unity.modules.hierarchycore": { 220 | "version": "1.0.0", 221 | "depth": 2, 222 | "source": "builtin", 223 | "dependencies": {} 224 | }, 225 | "com.unity.modules.imageconversion": { 226 | "version": "1.0.0", 227 | "depth": 1, 228 | "source": "builtin", 229 | "dependencies": {} 230 | }, 231 | "com.unity.modules.imgui": { 232 | "version": "1.0.0", 233 | "depth": 2, 234 | "source": "builtin", 235 | "dependencies": {} 236 | }, 237 | "com.unity.modules.jsonserialize": { 238 | "version": "1.0.0", 239 | "depth": 2, 240 | "source": "builtin", 241 | "dependencies": {} 242 | }, 243 | "com.unity.modules.particlesystem": { 244 | "version": "1.0.0", 245 | "depth": 2, 246 | "source": "builtin", 247 | "dependencies": {} 248 | }, 249 | "com.unity.modules.physics": { 250 | "version": "1.0.0", 251 | "depth": 2, 252 | "source": "builtin", 253 | "dependencies": {} 254 | }, 255 | "com.unity.modules.terrain": { 256 | "version": "1.0.0", 257 | "depth": 2, 258 | "source": "builtin", 259 | "dependencies": {} 260 | }, 261 | "com.unity.modules.ui": { 262 | "version": "1.0.0", 263 | "depth": 2, 264 | "source": "builtin", 265 | "dependencies": {} 266 | }, 267 | "com.unity.modules.uielements": { 268 | "version": "1.0.0", 269 | "depth": 1, 270 | "source": "builtin", 271 | "dependencies": { 272 | "com.unity.modules.ui": "1.0.0", 273 | "com.unity.modules.imgui": "1.0.0", 274 | "com.unity.modules.jsonserialize": "1.0.0", 275 | "com.unity.modules.hierarchycore": "1.0.0" 276 | } 277 | }, 278 | "com.unity.modules.unitywebrequest": { 279 | "version": "1.0.0", 280 | "depth": 2, 281 | "source": "builtin", 282 | "dependencies": {} 283 | }, 284 | "com.unity.modules.video": { 285 | "version": "1.0.0", 286 | "depth": 1, 287 | "source": "builtin", 288 | "dependencies": { 289 | "com.unity.modules.audio": "1.0.0", 290 | "com.unity.modules.ui": "1.0.0", 291 | "com.unity.modules.unitywebrequest": "1.0.0" 292 | } 293 | } 294 | } 295 | } 296 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_EnableOutputSuspension: 1 16 | m_SpatializerPlugin: 17 | m_AmbisonicDecoderPlugin: 18 | m_DisableAudio: 0 19 | m_VirtualizeEffects: 1 20 | m_RequestedDSPBufferSize: 1024 21 | -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneLinux64.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "Version": 4, 4 | "EnableBurstCompilation": true, 5 | "EnableOptimisations": true, 6 | "EnableSafetyChecks": false, 7 | "EnableDebugInAllBuilds": false, 8 | "DebugDataKind": 1, 9 | "EnableArmv9SecurityFeatures": false, 10 | "CpuMinTargetX32": 0, 11 | "CpuMaxTargetX32": 0, 12 | "CpuMinTargetX64": 0, 13 | "CpuMaxTargetX64": 0, 14 | "CpuTargetsX64": 72, 15 | "OptimizeFor": 0 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_StandaloneOSX.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "Version": 4, 4 | "EnableBurstCompilation": true, 5 | "EnableOptimisations": true, 6 | "EnableSafetyChecks": false, 7 | "EnableDebugInAllBuilds": false, 8 | "DebugDataKind": 1, 9 | "EnableArmv9SecurityFeatures": false, 10 | "CpuMinTargetX32": 0, 11 | "CpuMaxTargetX32": 0, 12 | "CpuMinTargetX64": 0, 13 | "CpuMaxTargetX64": 0, 14 | "CpuTargetsX64": 72, 15 | "OptimizeFor": 0 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "MonoBehaviour": { 3 | "Version": 4, 4 | "DisabledWarnings": "" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | m_FrictionType: 0 32 | m_EnableEnhancedDeterminism: 0 33 | m_EnableUnifiedHeightmaps: 1 34 | m_DefaultMaxAngluarSpeed: 7 35 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/Main.unity 10 | guid: 90b27fb46ee534b9ba70965bdfdfe29d 11 | m_configObjects: {} 12 | m_UseUCBPForAssetBundles: 0 13 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 13 7 | m_SerializationMode: 2 8 | m_LineEndingsForNewScripts: 1 9 | m_DefaultBehaviorMode: 0 10 | m_PrefabRegularEnvironment: {fileID: 0} 11 | m_PrefabUIEnvironment: {fileID: 0} 12 | m_SpritePackerMode: 0 13 | m_SpritePackerCacheSize: 10 14 | m_SpritePackerPaddingPower: 1 15 | m_Bc7TextureCompressor: 0 16 | m_EtcTextureCompressorBehavior: 1 17 | m_EtcTextureFastCompressor: 1 18 | m_EtcTextureNormalCompressor: 2 19 | m_EtcTextureBestCompressor: 4 20 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref 21 | m_ProjectGenerationRootNamespace: 22 | m_EnableTextureStreamingInEditMode: 1 23 | m_EnableTextureStreamingInPlayMode: 1 24 | m_EnableEditorAsyncCPUTextureLoading: 0 25 | m_AsyncShaderCompilation: 1 26 | m_PrefabModeAllowAutoSave: 1 27 | m_EnterPlayModeOptionsEnabled: 1 28 | m_EnterPlayModeOptions: 3 29 | m_GameObjectNamingDigits: 1 30 | m_GameObjectNamingScheme: 0 31 | m_AssetNamingUsesSpace: 1 32 | m_InspectorUseIMGUIDefaultInspector: 0 33 | m_UseLegacyProbeSampleCount: 0 34 | m_SerializeInlineMappingsOnOneLine: 1 35 | m_DisableCookiesInLightmapper: 0 36 | m_AssetPipelineMode: 1 37 | m_RefreshImportMode: 0 38 | m_CacheServerMode: 0 39 | m_CacheServerEndpoint: 40 | m_CacheServerNamespacePrefix: default 41 | m_CacheServerEnableDownload: 1 42 | m_CacheServerEnableUpload: 1 43 | m_CacheServerEnableAuth: 0 44 | m_CacheServerEnableTls: 0 45 | m_CacheServerValidationMode: 2 46 | m_CacheServerDownloadBatchSize: 128 47 | m_EnableEnlightenBakedGI: 0 48 | m_ReferencedClipsExactNaming: 0 49 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 16 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_DepthNormals: 17 | m_Mode: 1 18 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 19 | m_MotionVectors: 20 | m_Mode: 1 21 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 22 | m_LightHalo: 23 | m_Mode: 1 24 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LensFlare: 26 | m_Mode: 1 27 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 28 | m_VideoShadersIncludeMode: 2 29 | m_AlwaysIncludedShaders: 30 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 31 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 32 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 36 | m_PreloadedShaders: [] 37 | m_PreloadShadersBatchTimeLimit: -1 38 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} 39 | m_CustomRenderPipeline: {fileID: 11400000, guid: a987492a7ad17494f9346b6ef3088485, type: 2} 40 | m_TransparencySortMode: 0 41 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 42 | m_DefaultRenderingPath: 1 43 | m_DefaultMobileRenderingPath: 1 44 | m_TierSettings: [] 45 | m_LightmapStripping: 0 46 | m_FogStripping: 0 47 | m_InstancingStripping: 0 48 | m_BrgStripping: 0 49 | m_LightmapKeepPlain: 1 50 | m_LightmapKeepDirCombined: 1 51 | m_LightmapKeepDynamicPlain: 1 52 | m_LightmapKeepDynamicDirCombined: 1 53 | m_LightmapKeepShadowMask: 1 54 | m_LightmapKeepSubtractive: 1 55 | m_FogKeepLinear: 1 56 | m_FogKeepExp: 1 57 | m_FogKeepExp2: 1 58 | m_AlbedoSwatchInfos: [] 59 | m_RenderPipelineGlobalSettingsMap: 60 | UnityEngine.Rendering.HighDefinition.HDRenderPipeline: {fileID: 11400000, guid: 14014851a95f3429f9e102d09fa469ba, type: 2} 61 | m_LightsUseLinearIntensity: 1 62 | m_LightsUseColorTemperature: 1 63 | m_LogWhenShaderIsCompiled: 0 64 | m_LightProbeOutsideHullStrategy: 0 65 | m_CameraRelativeLightCulling: 0 66 | m_CameraRelativeShadowCulling: 0 67 | -------------------------------------------------------------------------------- /ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 63a2978a97e4fc04cb9d905947216f3d, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_ProjectSettingFolderPath: HDRPDefaultResources 16 | m_WizardPopupAtStart: 0 17 | m_LastMaterialVersion: 13 18 | m_HDShaderGraphLastSeenVersion: 0 19 | m_PluginMaterialVersions: 20 | m_Keys: [] 21 | m_Values: 22 | m_PluginSubTargetVersions: 23 | m_Keys: [] 24 | m_Values: 25 | m_Version: 2 26 | m_ObsoleteWizardPopupAlreadyShownOnce: 0 27 | m_ObsoleteWizardActiveTab: 0 28 | m_ObsoleteWizardNeedRestartAfterChangingToDX12: 0 29 | m_ObsoleteWizardNeedToRunFixAllAgainAfterDomainReload: 0 30 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | - serializedVersion: 3 297 | m_Name: Enable Debug Button 1 298 | descriptiveName: 299 | descriptiveNegativeName: 300 | negativeButton: 301 | positiveButton: left ctrl 302 | altNegativeButton: 303 | altPositiveButton: joystick button 8 304 | gravity: 0 305 | dead: 0 306 | sensitivity: 0 307 | snap: 0 308 | invert: 0 309 | type: 0 310 | axis: 0 311 | joyNum: 0 312 | - serializedVersion: 3 313 | m_Name: Enable Debug Button 2 314 | descriptiveName: 315 | descriptiveNegativeName: 316 | negativeButton: 317 | positiveButton: backspace 318 | altNegativeButton: 319 | altPositiveButton: joystick button 9 320 | gravity: 0 321 | dead: 0 322 | sensitivity: 0 323 | snap: 0 324 | invert: 0 325 | type: 0 326 | axis: 0 327 | joyNum: 0 328 | - serializedVersion: 3 329 | m_Name: Debug Reset 330 | descriptiveName: 331 | descriptiveNegativeName: 332 | negativeButton: 333 | positiveButton: left alt 334 | altNegativeButton: 335 | altPositiveButton: joystick button 1 336 | gravity: 0 337 | dead: 0 338 | sensitivity: 0 339 | snap: 0 340 | invert: 0 341 | type: 0 342 | axis: 0 343 | joyNum: 0 344 | - serializedVersion: 3 345 | m_Name: Debug Next 346 | descriptiveName: 347 | descriptiveNegativeName: 348 | negativeButton: 349 | positiveButton: page down 350 | altNegativeButton: 351 | altPositiveButton: joystick button 5 352 | gravity: 0 353 | dead: 0 354 | sensitivity: 0 355 | snap: 0 356 | invert: 0 357 | type: 0 358 | axis: 0 359 | joyNum: 0 360 | - serializedVersion: 3 361 | m_Name: Debug Previous 362 | descriptiveName: 363 | descriptiveNegativeName: 364 | negativeButton: 365 | positiveButton: page up 366 | altNegativeButton: 367 | altPositiveButton: joystick button 4 368 | gravity: 0 369 | dead: 0 370 | sensitivity: 0 371 | snap: 0 372 | invert: 0 373 | type: 0 374 | axis: 0 375 | joyNum: 0 376 | - serializedVersion: 3 377 | m_Name: Debug Validate 378 | descriptiveName: 379 | descriptiveNegativeName: 380 | negativeButton: 381 | positiveButton: return 382 | altNegativeButton: 383 | altPositiveButton: joystick button 0 384 | gravity: 0 385 | dead: 0 386 | sensitivity: 0 387 | snap: 0 388 | invert: 0 389 | type: 0 390 | axis: 0 391 | joyNum: 0 392 | - serializedVersion: 3 393 | m_Name: Debug Persistent 394 | descriptiveName: 395 | descriptiveNegativeName: 396 | negativeButton: 397 | positiveButton: right shift 398 | altNegativeButton: 399 | altPositiveButton: joystick button 2 400 | gravity: 0 401 | dead: 0 402 | sensitivity: 0 403 | snap: 0 404 | invert: 0 405 | type: 0 406 | axis: 0 407 | joyNum: 0 408 | - serializedVersion: 3 409 | m_Name: Debug Multiplier 410 | descriptiveName: 411 | descriptiveNegativeName: 412 | negativeButton: 413 | positiveButton: left shift 414 | altNegativeButton: 415 | altPositiveButton: joystick button 3 416 | gravity: 0 417 | dead: 0 418 | sensitivity: 0 419 | snap: 0 420 | invert: 0 421 | type: 0 422 | axis: 0 423 | joyNum: 0 424 | - serializedVersion: 3 425 | m_Name: Debug Horizontal 426 | descriptiveName: 427 | descriptiveNegativeName: 428 | negativeButton: left 429 | positiveButton: right 430 | altNegativeButton: 431 | altPositiveButton: 432 | gravity: 1000 433 | dead: 0.001 434 | sensitivity: 1000 435 | snap: 0 436 | invert: 0 437 | type: 0 438 | axis: 0 439 | joyNum: 0 440 | - serializedVersion: 3 441 | m_Name: Debug Vertical 442 | descriptiveName: 443 | descriptiveNegativeName: 444 | negativeButton: down 445 | positiveButton: up 446 | altNegativeButton: 447 | altPositiveButton: 448 | gravity: 1000 449 | dead: 0.001 450 | sensitivity: 1000 451 | snap: 0 452 | invert: 0 453 | type: 0 454 | axis: 0 455 | joyNum: 0 456 | - serializedVersion: 3 457 | m_Name: Debug Vertical 458 | descriptiveName: 459 | descriptiveNegativeName: 460 | negativeButton: down 461 | positiveButton: up 462 | altNegativeButton: 463 | altPositiveButton: 464 | gravity: 1000 465 | dead: 0.001 466 | sensitivity: 1000 467 | snap: 0 468 | invert: 0 469 | type: 2 470 | axis: 6 471 | joyNum: 0 472 | - serializedVersion: 3 473 | m_Name: Debug Horizontal 474 | descriptiveName: 475 | descriptiveNegativeName: 476 | negativeButton: left 477 | positiveButton: right 478 | altNegativeButton: 479 | altPositiveButton: 480 | gravity: 1000 481 | dead: 0.001 482 | sensitivity: 1000 483 | snap: 0 484 | invert: 0 485 | type: 2 486 | axis: 5 487 | joyNum: 0 488 | m_UsePhysicalKeys: 1 489 | -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!387306366 &1 4 | MemorySettings: 5 | m_ObjectHideFlags: 0 6 | m_EditorMemorySettings: 7 | m_MainAllocatorBlockSize: -1 8 | m_ThreadAllocatorBlockSize: -1 9 | m_MainGfxBlockSize: -1 10 | m_ThreadGfxBlockSize: -1 11 | m_CacheBlockSize: -1 12 | m_TypetreeBlockSize: -1 13 | m_ProfilerBlockSize: -1 14 | m_ProfilerEditorBlockSize: -1 15 | m_BucketAllocatorGranularity: -1 16 | m_BucketAllocatorBucketsCount: -1 17 | m_BucketAllocatorBlockSize: -1 18 | m_BucketAllocatorBlockCount: -1 19 | m_ProfilerBucketAllocatorGranularity: -1 20 | m_ProfilerBucketAllocatorBucketsCount: -1 21 | m_ProfilerBucketAllocatorBlockSize: -1 22 | m_ProfilerBucketAllocatorBlockCount: -1 23 | m_TempAllocatorSizeMain: -1 24 | m_JobTempAllocatorBlockSize: -1 25 | m_BackgroundJobTempAllocatorBlockSize: -1 26 | m_JobTempAllocatorReducedBlockSize: -1 27 | m_TempAllocatorSizeGIBakingWorker: -1 28 | m_TempAllocatorSizeNavMeshWorker: -1 29 | m_TempAllocatorSizeAudioWorker: -1 30 | m_TempAllocatorSizeCloudWorker: -1 31 | m_TempAllocatorSizeGfx: -1 32 | m_TempAllocatorSizeJobWorker: -1 33 | m_TempAllocatorSizeBackgroundWorker: -1 34 | m_TempAllocatorSizePreloadManager: -1 35 | m_PlatformMemorySettings: {} 36 | -------------------------------------------------------------------------------- /ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!655991488 &1 4 | MultiplayerManager: 5 | m_ObjectHideFlags: 0 6 | m_EnableMultiplayerRoles: 0 7 | m_ActiveMultiplayerRole: 0 8 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreReleasePackages: 1 16 | m_AdvancedSettingsExpanded: 1 17 | m_ScopedRegistriesSettingsExpanded: 1 18 | m_SeeAllPackageVersions: 0 19 | m_DismissPreviewPackagesInUse: 0 20 | oneTimeWarningShown: 1 21 | oneTimeDeprecatedPopUpShown: 0 22 | m_Registries: 23 | - m_Id: main 24 | m_Name: 25 | m_Url: https://packages.unity.com 26 | m_Scopes: [] 27 | m_IsDefault: 1 28 | m_Capabilities: 7 29 | m_ConfigSource: 0 30 | - m_Id: scoped:project:Keijiro 31 | m_Name: Keijiro 32 | m_Url: https://registry.npmjs.com 33 | m_Scopes: 34 | - jp.keijiro 35 | m_IsDefault: 0 36 | m_Capabilities: 0 37 | m_ConfigSource: 4 38 | m_UserSelectedRegistryName: Keijiro 39 | m_UserAddingNewScopedRegistry: 0 40 | m_RegistryInfoDraft: 41 | m_Modified: 0 42 | m_ErrorMessage: 43 | m_UserModificationsInstanceId: -850 44 | m_OriginalInstanceId: -852 45 | m_LoadAssets: 0 46 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 28 7 | productGUID: cfd3fb980e948476e86872de0f3709d5 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: Keijiro 16 | productName: HDRP Template 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 0 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1920 46 | defaultScreenHeight: 1080 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 1 51 | unsupportedMSAAFallback: 0 52 | m_SpriteBatchMaxVertexCount: 65535 53 | m_SpriteBatchVertexThreshold: 300 54 | m_MTRendering: 1 55 | mipStripping: 0 56 | numberOfMipsStripped: 0 57 | numberOfMipsStrippedPerMipmapLimitGroup: {} 58 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 59 | iosShowActivityIndicatorOnLoading: -1 60 | androidShowActivityIndicatorOnLoading: -1 61 | iosUseCustomAppBackgroundBehavior: 0 62 | allowedAutorotateToPortrait: 1 63 | allowedAutorotateToPortraitUpsideDown: 1 64 | allowedAutorotateToLandscapeRight: 1 65 | allowedAutorotateToLandscapeLeft: 1 66 | useOSAutorotation: 1 67 | use32BitDisplayBuffer: 1 68 | preserveFramebufferAlpha: 0 69 | disableDepthAndStencilBuffers: 0 70 | androidStartInFullscreen: 1 71 | androidRenderOutsideSafeArea: 1 72 | androidUseSwappy: 1 73 | androidBlitType: 0 74 | androidResizeableActivity: 0 75 | androidDefaultWindowWidth: 1920 76 | androidDefaultWindowHeight: 1080 77 | androidMinimumWindowWidth: 400 78 | androidMinimumWindowHeight: 300 79 | androidFullscreenMode: 1 80 | androidAutoRotationBehavior: 1 81 | androidPredictiveBackSupport: 0 82 | androidApplicationEntry: 2 83 | defaultIsNativeResolution: 1 84 | macRetinaSupport: 1 85 | runInBackground: 0 86 | muteOtherAudioSources: 0 87 | Prepare IOS For Recording: 0 88 | Force IOS Speakers When Recording: 0 89 | deferSystemGesturesMode: 0 90 | hideHomeButton: 0 91 | submitAnalytics: 1 92 | usePlayerLog: 1 93 | dedicatedServerOptimizations: 0 94 | bakeCollisionMeshes: 0 95 | forceSingleInstance: 0 96 | useFlipModelSwapchain: 1 97 | resizableWindow: 0 98 | useMacAppStoreValidation: 0 99 | macAppStoreCategory: public.app-category.games 100 | gpuSkinning: 1 101 | meshDeformation: 2 102 | xboxPIXTextureCapture: 0 103 | xboxEnableAvatar: 0 104 | xboxEnableKinect: 0 105 | xboxEnableKinectAutoTracking: 0 106 | xboxEnableFitness: 0 107 | visibleInBackground: 1 108 | allowFullscreenSwitch: 1 109 | fullscreenMode: 3 110 | xboxSpeechDB: 0 111 | xboxEnableHeadOrientation: 0 112 | xboxEnableGuest: 0 113 | xboxEnablePIXSampling: 0 114 | metalFramebufferOnly: 0 115 | xboxOneResolution: 0 116 | xboxOneSResolution: 0 117 | xboxOneXResolution: 3 118 | xboxOneMonoLoggingLevel: 0 119 | xboxOneLoggingLevel: 1 120 | xboxOneDisableEsram: 0 121 | xboxOneEnableTypeOptimization: 0 122 | xboxOnePresentImmediateThreshold: 0 123 | switchQueueCommandMemory: 0 124 | switchQueueControlMemory: 16384 125 | switchQueueComputeMemory: 262144 126 | switchNVNShaderPoolsGranularity: 33554432 127 | switchNVNDefaultPoolsGranularity: 16777216 128 | switchNVNOtherPoolsGranularity: 16777216 129 | switchGpuScratchPoolGranularity: 2097152 130 | switchAllowGpuScratchShrinking: 0 131 | switchNVNMaxPublicTextureIDCount: 0 132 | switchNVNMaxPublicSamplerIDCount: 0 133 | switchMaxWorkerMultiple: 8 134 | switchNVNGraphicsFirmwareMemory: 32 135 | vulkanNumSwapchainBuffers: 3 136 | vulkanEnableSetSRGBWrite: 0 137 | vulkanEnablePreTransform: 1 138 | vulkanEnableLateAcquireNextImage: 0 139 | vulkanEnableCommandBufferRecycling: 1 140 | loadStoreDebugModeEnabled: 0 141 | visionOSBundleVersion: 1.0 142 | tvOSBundleVersion: 1.0 143 | bundleVersion: 0.1 144 | preloadedAssets: [] 145 | metroInputSource: 0 146 | wsaTransparentSwapchain: 0 147 | m_HolographicPauseOnTrackingLoss: 1 148 | xboxOneDisableKinectGpuReservation: 1 149 | xboxOneEnable7thCore: 1 150 | vrSettings: 151 | enable360StereoCapture: 0 152 | isWsaHolographicRemotingEnabled: 0 153 | enableFrameTimingStats: 0 154 | enableOpenGLProfilerGPURecorders: 1 155 | allowHDRDisplaySupport: 0 156 | useHDRDisplay: 0 157 | hdrBitDepth: 0 158 | m_ColorGamuts: 00000000 159 | targetPixelDensity: 30 160 | resolutionScalingMode: 0 161 | resetResolutionOnWindowResize: 0 162 | androidSupportedAspectRatio: 1 163 | androidMaxAspectRatio: 2.1 164 | androidMinAspectRatio: 1 165 | applicationIdentifier: 166 | Standalone: com.Keijiro.HDRP-Template 167 | buildNumber: 168 | Bratwurst: 0 169 | Standalone: 0 170 | VisionOS: 0 171 | iPhone: 0 172 | tvOS: 0 173 | overrideDefaultApplicationIdentifier: 0 174 | AndroidBundleVersionCode: 1 175 | AndroidMinSdkVersion: 23 176 | AndroidTargetSdkVersion: 0 177 | AndroidPreferredInstallLocation: 1 178 | aotOptions: 179 | stripEngineCode: 1 180 | iPhoneStrippingLevel: 0 181 | iPhoneScriptCallOptimization: 0 182 | ForceInternetPermission: 0 183 | ForceSDCardPermission: 0 184 | CreateWallpaper: 0 185 | androidSplitApplicationBinary: 0 186 | keepLoadedShadersAlive: 0 187 | StripUnusedMeshComponents: 1 188 | strictShaderVariantMatching: 0 189 | VertexChannelCompressionMask: 4054 190 | iPhoneSdkVersion: 988 191 | iOSSimulatorArchitecture: 0 192 | iOSTargetOSVersionString: 13.0 193 | tvOSSdkVersion: 0 194 | tvOSSimulatorArchitecture: 0 195 | tvOSRequireExtendedGameController: 0 196 | tvOSTargetOSVersionString: 13.0 197 | VisionOSSdkVersion: 0 198 | VisionOSTargetOSVersionString: 1.0 199 | uIPrerenderedIcon: 0 200 | uIRequiresPersistentWiFi: 0 201 | uIRequiresFullScreen: 1 202 | uIStatusBarHidden: 1 203 | uIExitOnSuspend: 0 204 | uIStatusBarStyle: 0 205 | appleTVSplashScreen: {fileID: 0} 206 | appleTVSplashScreen2x: {fileID: 0} 207 | tvOSSmallIconLayers: [] 208 | tvOSSmallIconLayers2x: [] 209 | tvOSLargeIconLayers: [] 210 | tvOSLargeIconLayers2x: [] 211 | tvOSTopShelfImageLayers: [] 212 | tvOSTopShelfImageLayers2x: [] 213 | tvOSTopShelfImageWideLayers: [] 214 | tvOSTopShelfImageWideLayers2x: [] 215 | iOSLaunchScreenType: 0 216 | iOSLaunchScreenPortrait: {fileID: 0} 217 | iOSLaunchScreenLandscape: {fileID: 0} 218 | iOSLaunchScreenBackgroundColor: 219 | serializedVersion: 2 220 | rgba: 0 221 | iOSLaunchScreenFillPct: 100 222 | iOSLaunchScreenSize: 100 223 | iOSLaunchScreeniPadType: 0 224 | iOSLaunchScreeniPadImage: {fileID: 0} 225 | iOSLaunchScreeniPadBackgroundColor: 226 | serializedVersion: 2 227 | rgba: 0 228 | iOSLaunchScreeniPadFillPct: 100 229 | iOSLaunchScreeniPadSize: 100 230 | iOSLaunchScreenCustomStoryboardPath: 231 | iOSLaunchScreeniPadCustomStoryboardPath: 232 | iOSDeviceRequirements: [] 233 | iOSURLSchemes: [] 234 | macOSURLSchemes: [] 235 | iOSBackgroundModes: 0 236 | iOSMetalForceHardShadows: 0 237 | metalEditorSupport: 1 238 | metalAPIValidation: 1 239 | metalCompileShaderBinary: 0 240 | iOSRenderExtraFrameOnPause: 0 241 | iosCopyPluginsCodeInsteadOfSymlink: 0 242 | appleDeveloperTeamID: 243 | iOSManualSigningProvisioningProfileID: 244 | tvOSManualSigningProvisioningProfileID: 245 | VisionOSManualSigningProvisioningProfileID: 246 | iOSManualSigningProvisioningProfileType: 0 247 | tvOSManualSigningProvisioningProfileType: 0 248 | VisionOSManualSigningProvisioningProfileType: 0 249 | appleEnableAutomaticSigning: 0 250 | iOSRequireARKit: 0 251 | iOSAutomaticallyDetectAndAddCapabilities: 1 252 | appleEnableProMotion: 0 253 | shaderPrecisionModel: 0 254 | clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea 255 | templatePackageId: com.unity.template.3d@8.1.4 256 | templateDefaultScene: Assets/Scenes/SampleScene.unity 257 | useCustomMainManifest: 0 258 | useCustomLauncherManifest: 0 259 | useCustomMainGradleTemplate: 0 260 | useCustomLauncherGradleManifest: 0 261 | useCustomBaseGradleTemplate: 0 262 | useCustomGradlePropertiesTemplate: 0 263 | useCustomGradleSettingsTemplate: 0 264 | useCustomProguardFile: 0 265 | AndroidTargetArchitectures: 2 266 | AndroidSplashScreenScale: 0 267 | androidSplashScreen: {fileID: 0} 268 | AndroidKeystoreName: 269 | AndroidKeyaliasName: 270 | AndroidEnableArmv9SecurityFeatures: 0 271 | AndroidEnableArm64MTE: 0 272 | AndroidBuildApkPerCpuArchitecture: 0 273 | AndroidTVCompatibility: 0 274 | AndroidIsGame: 1 275 | AndroidEnableTango: 0 276 | androidEnableBanner: 1 277 | androidUseLowAccuracyLocation: 0 278 | androidUseCustomKeystore: 0 279 | m_AndroidBanners: 280 | - width: 320 281 | height: 180 282 | banner: {fileID: 0} 283 | androidGamepadSupportLevel: 0 284 | AndroidMinifyRelease: 0 285 | AndroidMinifyDebug: 0 286 | AndroidValidateAppBundleSize: 1 287 | AndroidAppBundleSizeToValidate: 150 288 | AndroidReportGooglePlayAppDependencies: 1 289 | androidSymbolsSizeThreshold: 800 290 | m_BuildTargetIcons: [] 291 | m_BuildTargetPlatformIcons: 292 | - m_BuildTarget: iPhone 293 | m_Icons: 294 | - m_Textures: [] 295 | m_Width: 180 296 | m_Height: 180 297 | m_Kind: 0 298 | m_SubKind: iPhone 299 | - m_Textures: [] 300 | m_Width: 120 301 | m_Height: 120 302 | m_Kind: 0 303 | m_SubKind: iPhone 304 | - m_Textures: [] 305 | m_Width: 167 306 | m_Height: 167 307 | m_Kind: 0 308 | m_SubKind: iPad 309 | - m_Textures: [] 310 | m_Width: 152 311 | m_Height: 152 312 | m_Kind: 0 313 | m_SubKind: iPad 314 | - m_Textures: [] 315 | m_Width: 76 316 | m_Height: 76 317 | m_Kind: 0 318 | m_SubKind: iPad 319 | - m_Textures: [] 320 | m_Width: 120 321 | m_Height: 120 322 | m_Kind: 3 323 | m_SubKind: iPhone 324 | - m_Textures: [] 325 | m_Width: 80 326 | m_Height: 80 327 | m_Kind: 3 328 | m_SubKind: iPhone 329 | - m_Textures: [] 330 | m_Width: 80 331 | m_Height: 80 332 | m_Kind: 3 333 | m_SubKind: iPad 334 | - m_Textures: [] 335 | m_Width: 40 336 | m_Height: 40 337 | m_Kind: 3 338 | m_SubKind: iPad 339 | - m_Textures: [] 340 | m_Width: 87 341 | m_Height: 87 342 | m_Kind: 1 343 | m_SubKind: iPhone 344 | - m_Textures: [] 345 | m_Width: 58 346 | m_Height: 58 347 | m_Kind: 1 348 | m_SubKind: iPhone 349 | - m_Textures: [] 350 | m_Width: 29 351 | m_Height: 29 352 | m_Kind: 1 353 | m_SubKind: iPhone 354 | - m_Textures: [] 355 | m_Width: 58 356 | m_Height: 58 357 | m_Kind: 1 358 | m_SubKind: iPad 359 | - m_Textures: [] 360 | m_Width: 29 361 | m_Height: 29 362 | m_Kind: 1 363 | m_SubKind: iPad 364 | - m_Textures: [] 365 | m_Width: 60 366 | m_Height: 60 367 | m_Kind: 2 368 | m_SubKind: iPhone 369 | - m_Textures: [] 370 | m_Width: 40 371 | m_Height: 40 372 | m_Kind: 2 373 | m_SubKind: iPhone 374 | - m_Textures: [] 375 | m_Width: 40 376 | m_Height: 40 377 | m_Kind: 2 378 | m_SubKind: iPad 379 | - m_Textures: [] 380 | m_Width: 20 381 | m_Height: 20 382 | m_Kind: 2 383 | m_SubKind: iPad 384 | - m_Textures: [] 385 | m_Width: 1024 386 | m_Height: 1024 387 | m_Kind: 4 388 | m_SubKind: App Store 389 | - m_BuildTarget: Android 390 | m_Icons: 391 | - m_Textures: [] 392 | m_Width: 432 393 | m_Height: 432 394 | m_Kind: 2 395 | m_SubKind: 396 | - m_Textures: [] 397 | m_Width: 324 398 | m_Height: 324 399 | m_Kind: 2 400 | m_SubKind: 401 | - m_Textures: [] 402 | m_Width: 216 403 | m_Height: 216 404 | m_Kind: 2 405 | m_SubKind: 406 | - m_Textures: [] 407 | m_Width: 162 408 | m_Height: 162 409 | m_Kind: 2 410 | m_SubKind: 411 | - m_Textures: [] 412 | m_Width: 108 413 | m_Height: 108 414 | m_Kind: 2 415 | m_SubKind: 416 | - m_Textures: [] 417 | m_Width: 81 418 | m_Height: 81 419 | m_Kind: 2 420 | m_SubKind: 421 | - m_Textures: [] 422 | m_Width: 192 423 | m_Height: 192 424 | m_Kind: 1 425 | m_SubKind: 426 | - m_Textures: [] 427 | m_Width: 144 428 | m_Height: 144 429 | m_Kind: 1 430 | m_SubKind: 431 | - m_Textures: [] 432 | m_Width: 96 433 | m_Height: 96 434 | m_Kind: 1 435 | m_SubKind: 436 | - m_Textures: [] 437 | m_Width: 72 438 | m_Height: 72 439 | m_Kind: 1 440 | m_SubKind: 441 | - m_Textures: [] 442 | m_Width: 48 443 | m_Height: 48 444 | m_Kind: 1 445 | m_SubKind: 446 | - m_Textures: [] 447 | m_Width: 36 448 | m_Height: 36 449 | m_Kind: 1 450 | m_SubKind: 451 | - m_Textures: [] 452 | m_Width: 192 453 | m_Height: 192 454 | m_Kind: 0 455 | m_SubKind: 456 | - m_Textures: [] 457 | m_Width: 144 458 | m_Height: 144 459 | m_Kind: 0 460 | m_SubKind: 461 | - m_Textures: [] 462 | m_Width: 96 463 | m_Height: 96 464 | m_Kind: 0 465 | m_SubKind: 466 | - m_Textures: [] 467 | m_Width: 72 468 | m_Height: 72 469 | m_Kind: 0 470 | m_SubKind: 471 | - m_Textures: [] 472 | m_Width: 48 473 | m_Height: 48 474 | m_Kind: 0 475 | m_SubKind: 476 | - m_Textures: [] 477 | m_Width: 36 478 | m_Height: 36 479 | m_Kind: 0 480 | m_SubKind: 481 | m_BuildTargetBatching: 482 | - m_BuildTarget: Standalone 483 | m_StaticBatching: 1 484 | m_DynamicBatching: 0 485 | - m_BuildTarget: tvOS 486 | m_StaticBatching: 1 487 | m_DynamicBatching: 0 488 | - m_BuildTarget: Android 489 | m_StaticBatching: 1 490 | m_DynamicBatching: 0 491 | - m_BuildTarget: iPhone 492 | m_StaticBatching: 1 493 | m_DynamicBatching: 0 494 | - m_BuildTarget: WebGL 495 | m_StaticBatching: 0 496 | m_DynamicBatching: 0 497 | m_BuildTargetShaderSettings: [] 498 | m_BuildTargetGraphicsJobs: 499 | - m_BuildTarget: MacStandaloneSupport 500 | m_GraphicsJobs: 0 501 | - m_BuildTarget: Switch 502 | m_GraphicsJobs: 1 503 | - m_BuildTarget: MetroSupport 504 | m_GraphicsJobs: 1 505 | - m_BuildTarget: AppleTVSupport 506 | m_GraphicsJobs: 0 507 | - m_BuildTarget: BJMSupport 508 | m_GraphicsJobs: 1 509 | - m_BuildTarget: LinuxStandaloneSupport 510 | m_GraphicsJobs: 1 511 | - m_BuildTarget: PS4Player 512 | m_GraphicsJobs: 1 513 | - m_BuildTarget: iOSSupport 514 | m_GraphicsJobs: 0 515 | - m_BuildTarget: WindowsStandaloneSupport 516 | m_GraphicsJobs: 1 517 | - m_BuildTarget: XboxOnePlayer 518 | m_GraphicsJobs: 1 519 | - m_BuildTarget: LuminSupport 520 | m_GraphicsJobs: 0 521 | - m_BuildTarget: AndroidPlayer 522 | m_GraphicsJobs: 0 523 | - m_BuildTarget: WebGLSupport 524 | m_GraphicsJobs: 0 525 | m_BuildTargetGraphicsJobMode: 526 | - m_BuildTarget: PS4Player 527 | m_GraphicsJobMode: 0 528 | - m_BuildTarget: XboxOnePlayer 529 | m_GraphicsJobMode: 0 530 | m_BuildTargetGraphicsAPIs: 531 | - m_BuildTarget: AndroidPlayer 532 | m_APIs: 150000000b000000 533 | m_Automatic: 1 534 | - m_BuildTarget: iOSSupport 535 | m_APIs: 10000000 536 | m_Automatic: 1 537 | - m_BuildTarget: AppleTVSupport 538 | m_APIs: 10000000 539 | m_Automatic: 1 540 | - m_BuildTarget: WebGLSupport 541 | m_APIs: 0b000000 542 | m_Automatic: 1 543 | - m_BuildTarget: LinuxStandaloneSupport 544 | m_APIs: 15000000 545 | m_Automatic: 0 546 | m_BuildTargetVRSettings: 547 | - m_BuildTarget: Standalone 548 | m_Enabled: 0 549 | m_Devices: 550 | - Oculus 551 | - OpenVR 552 | m_DefaultShaderChunkSizeInMB: 16 553 | m_DefaultShaderChunkCount: 0 554 | openGLRequireES31: 0 555 | openGLRequireES31AEP: 0 556 | openGLRequireES32: 0 557 | m_TemplateCustomTags: {} 558 | mobileMTRendering: 559 | Android: 1 560 | iPhone: 1 561 | tvOS: 1 562 | m_BuildTargetGroupLightmapEncodingQuality: 563 | - serializedVersion: 2 564 | m_BuildTarget: Android 565 | m_EncodingQuality: 2 566 | - serializedVersion: 2 567 | m_BuildTarget: iOS 568 | m_EncodingQuality: 2 569 | - serializedVersion: 2 570 | m_BuildTarget: tvOS 571 | m_EncodingQuality: 1 572 | - serializedVersion: 2 573 | m_BuildTarget: Standalone 574 | m_EncodingQuality: 2 575 | - serializedVersion: 2 576 | m_BuildTarget: WindowsStoreApps 577 | m_EncodingQuality: 2 578 | - serializedVersion: 2 579 | m_BuildTarget: Switch 580 | m_EncodingQuality: 2 581 | m_BuildTargetGroupLightmapSettings: [] 582 | m_BuildTargetGroupLoadStoreDebugModeSettings: [] 583 | m_BuildTargetNormalMapEncoding: 584 | - m_BuildTarget: Android 585 | m_Encoding: 1 586 | - m_BuildTarget: iPhone 587 | m_Encoding: 1 588 | - m_BuildTarget: tvOS 589 | m_Encoding: 1 590 | m_BuildTargetDefaultTextureCompressionFormat: 591 | - serializedVersion: 3 592 | m_BuildTarget: Android 593 | m_Formats: 03000000 594 | playModeTestRunnerEnabled: 0 595 | runPlayModeTestAsEditModeTest: 0 596 | actionOnDotNetUnhandledException: 1 597 | editorGfxJobOverride: 1 598 | enableInternalProfiler: 0 599 | logObjCUncaughtExceptions: 1 600 | enableCrashReportAPI: 0 601 | cameraUsageDescription: 602 | locationUsageDescription: 603 | microphoneUsageDescription: 604 | bluetoothUsageDescription: 605 | macOSTargetOSVersion: 11.0 606 | switchNMETAOverride: 607 | switchNetLibKey: 608 | switchSocketMemoryPoolSize: 6144 609 | switchSocketAllocatorPoolSize: 128 610 | switchSocketConcurrencyLimit: 14 611 | switchScreenResolutionBehavior: 2 612 | switchUseCPUProfiler: 0 613 | switchEnableFileSystemTrace: 0 614 | switchLTOSetting: 0 615 | switchApplicationID: 0x01004b9000490000 616 | switchNSODependencies: 617 | switchCompilerFlags: 618 | switchTitleNames_0: 619 | switchTitleNames_1: 620 | switchTitleNames_2: 621 | switchTitleNames_3: 622 | switchTitleNames_4: 623 | switchTitleNames_5: 624 | switchTitleNames_6: 625 | switchTitleNames_7: 626 | switchTitleNames_8: 627 | switchTitleNames_9: 628 | switchTitleNames_10: 629 | switchTitleNames_11: 630 | switchTitleNames_12: 631 | switchTitleNames_13: 632 | switchTitleNames_14: 633 | switchTitleNames_15: 634 | switchPublisherNames_0: 635 | switchPublisherNames_1: 636 | switchPublisherNames_2: 637 | switchPublisherNames_3: 638 | switchPublisherNames_4: 639 | switchPublisherNames_5: 640 | switchPublisherNames_6: 641 | switchPublisherNames_7: 642 | switchPublisherNames_8: 643 | switchPublisherNames_9: 644 | switchPublisherNames_10: 645 | switchPublisherNames_11: 646 | switchPublisherNames_12: 647 | switchPublisherNames_13: 648 | switchPublisherNames_14: 649 | switchPublisherNames_15: 650 | switchIcons_0: {fileID: 0} 651 | switchIcons_1: {fileID: 0} 652 | switchIcons_2: {fileID: 0} 653 | switchIcons_3: {fileID: 0} 654 | switchIcons_4: {fileID: 0} 655 | switchIcons_5: {fileID: 0} 656 | switchIcons_6: {fileID: 0} 657 | switchIcons_7: {fileID: 0} 658 | switchIcons_8: {fileID: 0} 659 | switchIcons_9: {fileID: 0} 660 | switchIcons_10: {fileID: 0} 661 | switchIcons_11: {fileID: 0} 662 | switchIcons_12: {fileID: 0} 663 | switchIcons_13: {fileID: 0} 664 | switchIcons_14: {fileID: 0} 665 | switchIcons_15: {fileID: 0} 666 | switchSmallIcons_0: {fileID: 0} 667 | switchSmallIcons_1: {fileID: 0} 668 | switchSmallIcons_2: {fileID: 0} 669 | switchSmallIcons_3: {fileID: 0} 670 | switchSmallIcons_4: {fileID: 0} 671 | switchSmallIcons_5: {fileID: 0} 672 | switchSmallIcons_6: {fileID: 0} 673 | switchSmallIcons_7: {fileID: 0} 674 | switchSmallIcons_8: {fileID: 0} 675 | switchSmallIcons_9: {fileID: 0} 676 | switchSmallIcons_10: {fileID: 0} 677 | switchSmallIcons_11: {fileID: 0} 678 | switchSmallIcons_12: {fileID: 0} 679 | switchSmallIcons_13: {fileID: 0} 680 | switchSmallIcons_14: {fileID: 0} 681 | switchSmallIcons_15: {fileID: 0} 682 | switchManualHTML: 683 | switchAccessibleURLs: 684 | switchLegalInformation: 685 | switchMainThreadStackSize: 1048576 686 | switchPresenceGroupId: 687 | switchLogoHandling: 0 688 | switchReleaseVersion: 0 689 | switchDisplayVersion: 1.0.0 690 | switchStartupUserAccount: 0 691 | switchSupportedLanguagesMask: 0 692 | switchLogoType: 0 693 | switchApplicationErrorCodeCategory: 694 | switchUserAccountSaveDataSize: 0 695 | switchUserAccountSaveDataJournalSize: 0 696 | switchApplicationAttribute: 0 697 | switchCardSpecSize: -1 698 | switchCardSpecClock: -1 699 | switchRatingsMask: 0 700 | switchRatingsInt_0: 0 701 | switchRatingsInt_1: 0 702 | switchRatingsInt_2: 0 703 | switchRatingsInt_3: 0 704 | switchRatingsInt_4: 0 705 | switchRatingsInt_5: 0 706 | switchRatingsInt_6: 0 707 | switchRatingsInt_7: 0 708 | switchRatingsInt_8: 0 709 | switchRatingsInt_9: 0 710 | switchRatingsInt_10: 0 711 | switchRatingsInt_11: 0 712 | switchRatingsInt_12: 0 713 | switchLocalCommunicationIds_0: 714 | switchLocalCommunicationIds_1: 715 | switchLocalCommunicationIds_2: 716 | switchLocalCommunicationIds_3: 717 | switchLocalCommunicationIds_4: 718 | switchLocalCommunicationIds_5: 719 | switchLocalCommunicationIds_6: 720 | switchLocalCommunicationIds_7: 721 | switchParentalControl: 0 722 | switchAllowsScreenshot: 1 723 | switchAllowsVideoCapturing: 1 724 | switchAllowsRuntimeAddOnContentInstall: 0 725 | switchDataLossConfirmation: 0 726 | switchUserAccountLockEnabled: 0 727 | switchSystemResourceMemory: 16777216 728 | switchSupportedNpadStyles: 22 729 | switchNativeFsCacheSize: 32 730 | switchIsHoldTypeHorizontal: 0 731 | switchSupportedNpadCount: 8 732 | switchEnableTouchScreen: 1 733 | switchSocketConfigEnabled: 0 734 | switchTcpInitialSendBufferSize: 32 735 | switchTcpInitialReceiveBufferSize: 64 736 | switchTcpAutoSendBufferSizeMax: 256 737 | switchTcpAutoReceiveBufferSizeMax: 256 738 | switchUdpSendBufferSize: 9 739 | switchUdpReceiveBufferSize: 42 740 | switchSocketBufferEfficiency: 4 741 | switchSocketInitializeEnabled: 1 742 | switchNetworkInterfaceManagerInitializeEnabled: 1 743 | switchDisableHTCSPlayerConnection: 0 744 | switchUseNewStyleFilepaths: 1 745 | switchUseLegacyFmodPriorities: 0 746 | switchUseMicroSleepForYield: 1 747 | switchEnableRamDiskSupport: 0 748 | switchMicroSleepForYieldTime: 25 749 | switchRamDiskSpaceSize: 12 750 | switchUpgradedPlayerSettingsToNMETA: 0 751 | ps4NPAgeRating: 12 752 | ps4NPTitleSecret: 753 | ps4NPTrophyPackPath: 754 | ps4ParentalLevel: 11 755 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 756 | ps4Category: 0 757 | ps4MasterVersion: 01.00 758 | ps4AppVersion: 01.00 759 | ps4AppType: 0 760 | ps4ParamSfxPath: 761 | ps4VideoOutPixelFormat: 0 762 | ps4VideoOutInitialWidth: 1920 763 | ps4VideoOutBaseModeInitialWidth: 1920 764 | ps4VideoOutReprojectionRate: 60 765 | ps4PronunciationXMLPath: 766 | ps4PronunciationSIGPath: 767 | ps4BackgroundImagePath: 768 | ps4StartupImagePath: 769 | ps4StartupImagesFolder: 770 | ps4IconImagesFolder: 771 | ps4SaveDataImagePath: 772 | ps4SdkOverride: 773 | ps4BGMPath: 774 | ps4ShareFilePath: 775 | ps4ShareOverlayImagePath: 776 | ps4PrivacyGuardImagePath: 777 | ps4ExtraSceSysFile: 778 | ps4NPtitleDatPath: 779 | ps4RemotePlayKeyAssignment: -1 780 | ps4RemotePlayKeyMappingDir: 781 | ps4PlayTogetherPlayerCount: 0 782 | ps4EnterButtonAssignment: 1 783 | ps4ApplicationParam1: 0 784 | ps4ApplicationParam2: 0 785 | ps4ApplicationParam3: 0 786 | ps4ApplicationParam4: 0 787 | ps4DownloadDataSize: 0 788 | ps4GarlicHeapSize: 2048 789 | ps4ProGarlicHeapSize: 2560 790 | playerPrefsMaxSize: 32768 791 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 792 | ps4pnSessions: 1 793 | ps4pnPresence: 1 794 | ps4pnFriends: 1 795 | ps4pnGameCustomData: 1 796 | playerPrefsSupport: 0 797 | enableApplicationExit: 0 798 | resetTempFolder: 1 799 | restrictedAudioUsageRights: 0 800 | ps4UseResolutionFallback: 0 801 | ps4ReprojectionSupport: 0 802 | ps4UseAudio3dBackend: 0 803 | ps4UseLowGarlicFragmentationMode: 1 804 | ps4SocialScreenEnabled: 0 805 | ps4ScriptOptimizationLevel: 0 806 | ps4Audio3dVirtualSpeakerCount: 14 807 | ps4attribCpuUsage: 0 808 | ps4PatchPkgPath: 809 | ps4PatchLatestPkgPath: 810 | ps4PatchChangeinfoPath: 811 | ps4PatchDayOne: 0 812 | ps4attribUserManagement: 0 813 | ps4attribMoveSupport: 0 814 | ps4attrib3DSupport: 0 815 | ps4attribShareSupport: 0 816 | ps4attribExclusiveVR: 0 817 | ps4disableAutoHideSplash: 0 818 | ps4videoRecordingFeaturesUsed: 0 819 | ps4contentSearchFeaturesUsed: 0 820 | ps4CompatibilityPS5: 0 821 | ps4AllowPS5Detection: 0 822 | ps4GPU800MHz: 1 823 | ps4attribEyeToEyeDistanceSettingVR: 0 824 | ps4IncludedModules: [] 825 | ps4attribVROutputEnabled: 0 826 | monoEnv: 827 | splashScreenBackgroundSourceLandscape: {fileID: 0} 828 | splashScreenBackgroundSourcePortrait: {fileID: 0} 829 | blurSplashScreenBackground: 1 830 | spritePackerPolicy: 831 | webGLMemorySize: 16 832 | webGLExceptionSupport: 1 833 | webGLNameFilesAsHashes: 0 834 | webGLShowDiagnostics: 0 835 | webGLDataCaching: 1 836 | webGLDebugSymbols: 0 837 | webGLEmscriptenArgs: 838 | webGLModulesDirectory: 839 | webGLTemplate: APPLICATION:Default 840 | webGLAnalyzeBuildSize: 0 841 | webGLUseEmbeddedResources: 0 842 | webGLCompressionFormat: 1 843 | webGLWasmArithmeticExceptions: 0 844 | webGLLinkerTarget: 1 845 | webGLThreadsSupport: 0 846 | webGLDecompressionFallback: 0 847 | webGLInitialMemorySize: 32 848 | webGLMaximumMemorySize: 2048 849 | webGLMemoryGrowthMode: 2 850 | webGLMemoryLinearGrowthStep: 16 851 | webGLMemoryGeometricGrowthStep: 0.2 852 | webGLMemoryGeometricGrowthCap: 96 853 | webGLEnableWebGPU: 0 854 | webGLPowerPreference: 2 855 | webGLWebAssemblyTable: 0 856 | webGLWebAssemblyBigInt: 0 857 | webGLCloseOnQuit: 0 858 | webWasm2023: 0 859 | scriptingDefineSymbols: {} 860 | additionalCompilerArguments: {} 861 | platformArchitecture: {} 862 | scriptingBackend: 863 | Android: 1 864 | Standalone: 0 865 | il2cppCompilerConfiguration: {} 866 | il2cppCodeGeneration: {} 867 | il2cppStacktraceInformation: {} 868 | managedStrippingLevel: 869 | Android: 1 870 | Bratwurst: 1 871 | EmbeddedLinux: 1 872 | GameCoreScarlett: 1 873 | GameCoreXboxOne: 1 874 | Nintendo Switch: 1 875 | PS4: 1 876 | PS5: 1 877 | QNX: 1 878 | WebGL: 1 879 | Windows Store Apps: 1 880 | XboxOne: 1 881 | iPhone: 1 882 | tvOS: 1 883 | incrementalIl2cppBuild: {} 884 | suppressCommonWarnings: 0 885 | allowUnsafeCode: 0 886 | useDeterministicCompilation: 1 887 | additionalIl2CppArgs: 888 | scriptingRuntimeVersion: 1 889 | gcIncremental: 1 890 | gcWBarrierValidation: 0 891 | apiCompatibilityLevelPerPlatform: {} 892 | editorAssembliesCompatibilityLevel: 1 893 | m_RenderingPath: 1 894 | m_MobileRenderingPath: 1 895 | metroPackageName: HDRP-Template 896 | metroPackageVersion: 897 | metroCertificatePath: 898 | metroCertificatePassword: 899 | metroCertificateSubject: 900 | metroCertificateIssuer: 901 | metroCertificateNotAfter: 0000000000000000 902 | metroApplicationDescription: HDRP-Template 903 | wsaImages: {} 904 | metroTileShortName: 905 | metroTileShowName: 0 906 | metroMediumTileShowName: 0 907 | metroLargeTileShowName: 0 908 | metroWideTileShowName: 0 909 | metroSupportStreamingInstall: 0 910 | metroLastRequiredScene: 0 911 | metroDefaultTileSize: 1 912 | metroTileForegroundText: 2 913 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 914 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} 915 | metroSplashScreenUseBackgroundColor: 0 916 | syncCapabilities: 0 917 | platformCapabilities: {} 918 | metroTargetDeviceFamilies: {} 919 | metroFTAName: 920 | metroFTAFileTypes: [] 921 | metroProtocolName: 922 | vcxProjDefaultLanguage: 923 | XboxOneProductId: 924 | XboxOneUpdateKey: 925 | XboxOneSandboxId: 926 | XboxOneContentId: 927 | XboxOneTitleId: 928 | XboxOneSCId: 929 | XboxOneGameOsOverridePath: 930 | XboxOnePackagingOverridePath: 931 | XboxOneAppManifestOverridePath: 932 | XboxOneVersion: 1.0.0.0 933 | XboxOnePackageEncryption: 0 934 | XboxOnePackageUpdateGranularity: 2 935 | XboxOneDescription: 936 | XboxOneLanguage: 937 | - enus 938 | XboxOneCapability: [] 939 | XboxOneGameRating: {} 940 | XboxOneIsContentPackage: 0 941 | XboxOneEnhancedXboxCompatibilityMode: 0 942 | XboxOneEnableGPUVariability: 1 943 | XboxOneSockets: {} 944 | XboxOneSplashScreen: {fileID: 0} 945 | XboxOneAllowedProductIds: [] 946 | XboxOnePersistentLocalStorageSize: 0 947 | XboxOneXTitleMemory: 8 948 | XboxOneOverrideIdentityName: 949 | XboxOneOverrideIdentityPublisher: 950 | vrEditorSettings: {} 951 | cloudServicesEnabled: 952 | UNet: 1 953 | luminIcon: 954 | m_Name: 955 | m_ModelFolderPath: 956 | m_PortalFolderPath: 957 | luminCert: 958 | m_CertPath: 959 | m_SignPackage: 1 960 | luminIsChannelApp: 0 961 | luminVersion: 962 | m_VersionCode: 1 963 | m_VersionName: 964 | hmiPlayerDataPath: 965 | hmiForceSRGBBlit: 0 966 | embeddedLinuxEnableGamepadInput: 0 967 | hmiCpuConfiguration: 968 | hmiLogStartupTiming: 0 969 | qnxGraphicConfPath: 970 | apiCompatibilityLevel: 6 971 | captureStartupLogs: {} 972 | activeInputHandler: 1 973 | windowsGamepadBackendHint: 0 974 | cloudProjectId: 975 | framebufferDepthMemorylessMode: 0 976 | qualitySettingsNames: [] 977 | projectName: 978 | organizationId: 979 | cloudEnabled: 0 980 | legacyClampBlendShapeWeights: 0 981 | hmiLoadingImage: {fileID: 0} 982 | platformRequiresReadableAssets: 0 983 | virtualTexturingSupportEnabled: 0 984 | insecureHttpOption: 0 985 | androidVulkanDenyFilterList: [] 986 | androidVulkanAllowFilterList: [] 987 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 6000.0.24f1 2 | m_EditorVersionWithRevision: 6000.0.24f1 (11fa355cd605) 3 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 0 8 | m_QualitySettings: 9 | - serializedVersion: 4 10 | name: High 11 | pixelLightCount: 2 12 | shadows: 2 13 | shadowResolution: 1 14 | shadowProjection: 1 15 | shadowCascades: 2 16 | shadowDistance: 40 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 1 21 | skinWeights: 2 22 | globalTextureMipmapLimit: 0 23 | textureMipmapLimitSettings: [] 24 | anisotropicTextures: 1 25 | antiAliasing: 0 26 | softParticles: 0 27 | softVegetation: 1 28 | realtimeReflectionProbes: 1 29 | billboardsFaceCameraPosition: 1 30 | useLegacyDetailDistribution: 1 31 | adaptiveVsync: 0 32 | vSyncCount: 1 33 | realtimeGICPUUsage: 50 34 | adaptiveVsyncExtraA: 0 35 | adaptiveVsyncExtraB: 0 36 | lodBias: 1 37 | maximumLODLevel: 0 38 | enableLODCrossFade: 1 39 | streamingMipmapsActive: 0 40 | streamingMipmapsAddAllCameras: 1 41 | streamingMipmapsMemoryBudget: 512 42 | streamingMipmapsRenderersPerFrame: 512 43 | streamingMipmapsMaxLevelReduction: 2 44 | streamingMipmapsMaxFileIORequests: 1024 45 | particleRaycastBudget: 256 46 | asyncUploadTimeSlice: 2 47 | asyncUploadBufferSize: 16 48 | asyncUploadPersistentBuffer: 1 49 | resolutionScalingFixedDPIFactor: 1 50 | customRenderPipeline: {fileID: 0} 51 | terrainQualityOverrides: 0 52 | terrainPixelError: 1 53 | terrainDetailDensityScale: 1 54 | terrainBasemapDistance: 1000 55 | terrainDetailDistance: 80 56 | terrainTreeDistance: 5000 57 | terrainBillboardStart: 50 58 | terrainFadeLength: 5 59 | terrainMaxTrees: 50 60 | excludedTargetPlatforms: [] 61 | m_TextureMipmapLimitGroupNames: [] 62 | m_PerPlatformDefaultQuality: 63 | Android: 0 64 | GameCoreScarlett: 0 65 | GameCoreXboxOne: 0 66 | Lumin: 0 67 | Nintendo 3DS: 0 68 | Nintendo Switch: 0 69 | PS4: 0 70 | PS5: 0 71 | Stadia: 0 72 | Standalone: 0 73 | WebGL: 0 74 | Windows Store Apps: 0 75 | XboxOne: 0 76 | iPhone: 0 77 | tvOS: 0 78 | -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "templatePinStates": [], 3 | "dependencyTypeInfos": [ 4 | { 5 | "userAdded": false, 6 | "type": "UnityEngine.AnimationClip", 7 | "defaultInstantiationMode": 0 8 | }, 9 | { 10 | "userAdded": false, 11 | "type": "UnityEditor.Animations.AnimatorController", 12 | "defaultInstantiationMode": 0 13 | }, 14 | { 15 | "userAdded": false, 16 | "type": "UnityEngine.AnimatorOverrideController", 17 | "defaultInstantiationMode": 0 18 | }, 19 | { 20 | "userAdded": false, 21 | "type": "UnityEditor.Audio.AudioMixerController", 22 | "defaultInstantiationMode": 0 23 | }, 24 | { 25 | "userAdded": false, 26 | "type": "UnityEngine.ComputeShader", 27 | "defaultInstantiationMode": 1 28 | }, 29 | { 30 | "userAdded": false, 31 | "type": "UnityEngine.Cubemap", 32 | "defaultInstantiationMode": 0 33 | }, 34 | { 35 | "userAdded": false, 36 | "type": "UnityEngine.GameObject", 37 | "defaultInstantiationMode": 0 38 | }, 39 | { 40 | "userAdded": false, 41 | "type": "UnityEditor.LightingDataAsset", 42 | "defaultInstantiationMode": 0 43 | }, 44 | { 45 | "userAdded": false, 46 | "type": "UnityEngine.LightingSettings", 47 | "defaultInstantiationMode": 0 48 | }, 49 | { 50 | "userAdded": false, 51 | "type": "UnityEngine.Material", 52 | "defaultInstantiationMode": 0 53 | }, 54 | { 55 | "userAdded": false, 56 | "type": "UnityEditor.MonoScript", 57 | "defaultInstantiationMode": 1 58 | }, 59 | { 60 | "userAdded": false, 61 | "type": "UnityEngine.PhysicMaterial", 62 | "defaultInstantiationMode": 0 63 | }, 64 | { 65 | "userAdded": false, 66 | "type": "UnityEngine.PhysicsMaterial", 67 | "defaultInstantiationMode": 0 68 | }, 69 | { 70 | "userAdded": false, 71 | "type": "UnityEngine.PhysicsMaterial2D", 72 | "defaultInstantiationMode": 0 73 | }, 74 | { 75 | "userAdded": false, 76 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", 77 | "defaultInstantiationMode": 0 78 | }, 79 | { 80 | "userAdded": false, 81 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", 82 | "defaultInstantiationMode": 0 83 | }, 84 | { 85 | "userAdded": false, 86 | "type": "UnityEngine.Rendering.VolumeProfile", 87 | "defaultInstantiationMode": 0 88 | }, 89 | { 90 | "userAdded": false, 91 | "type": "UnityEditor.SceneAsset", 92 | "defaultInstantiationMode": 1 93 | }, 94 | { 95 | "userAdded": false, 96 | "type": "UnityEngine.Shader", 97 | "defaultInstantiationMode": 1 98 | }, 99 | { 100 | "userAdded": false, 101 | "type": "UnityEngine.ShaderVariantCollection", 102 | "defaultInstantiationMode": 1 103 | }, 104 | { 105 | "userAdded": false, 106 | "type": "UnityEngine.Texture", 107 | "defaultInstantiationMode": 0 108 | }, 109 | { 110 | "userAdded": false, 111 | "type": "UnityEngine.Texture2D", 112 | "defaultInstantiationMode": 0 113 | }, 114 | { 115 | "userAdded": false, 116 | "type": "UnityEngine.Timeline.TimelineAsset", 117 | "defaultInstantiationMode": 0 118 | } 119 | ], 120 | "defaultDependencyTypeInfo": { 121 | "userAdded": false, 122 | "type": "", 123 | "defaultInstantiationMode": 1 124 | }, 125 | "newSceneOverride": 0 126 | } -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 53 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | shaderVariantLimit: 128 16 | customInterpolatorErrorThreshold: 32 17 | customInterpolatorWarningThreshold: 16 18 | customHeatmapValues: {fileID: 0} 19 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_DashboardUrl: https://dashboard.unity3d.com 13 | m_TestInitMode: 0 14 | CrashReportingSettings: 15 | m_EventUrl: https://perf-events.cloud.unity3d.com 16 | m_Enabled: 0 17 | m_LogBufferSize: 10 18 | m_CaptureEditorExceptions: 1 19 | UnityPurchasingSettings: 20 | m_Enabled: 0 21 | m_TestMode: 0 22 | UnityAnalyticsSettings: 23 | m_Enabled: 0 24 | m_TestMode: 0 25 | m_InitializeOnStartup: 1 26 | m_PackageRequiringCoreStatsPresent: 0 27 | UnityAdsSettings: 28 | m_Enabled: 0 29 | m_InitializeOnStartup: 1 30 | m_TestMode: 0 31 | m_IosGameId: 32 | m_AndroidGameId: 33 | m_GameIds: {} 34 | m_GameId: 35 | PerformanceReportingSettings: 36 | m_Enabled: 0 37 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 7200000, guid: 84a17cfa13e40ae4082ef42714f0a81c, type: 3} 7 | m_CopyBufferShader: {fileID: 7200000, guid: 23c51f21a3503f6428b527b01f8a2f4e, type: 3} 8 | m_SortShader: {fileID: 7200000, guid: ea257ca3cfb12a642a5025e612af6b2a, type: 3} 9 | m_StripUpdateShader: {fileID: 7200000, guid: 8fa6c4009fe2a4d4486c62736fc30ad8, type: 3} 10 | m_EmptyShader: {fileID: 4800000, guid: 33a2079f6a2db4c4eb2e44b33f4ddf6b, type: 3} 11 | m_RenderPipeSettingsPath: 12 | m_FixedTimeStep: 0.016666668 13 | m_MaxDeltaTime: 0.05 14 | m_MaxScrubTime: 30 15 | m_MaxCapacity: 100000000 16 | m_CompiledVersion: 7 17 | m_RuntimeVersion: 38 18 | m_RuntimeResources: {fileID: 11400000, guid: bc10b42afe3813544bffd38ae2cd893d, type: 2} 19 | m_BatchEmptyLifetime: 300 20 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AsyncInstAnim 2 | 3 | ![Sync](https://github.com/user-attachments/assets/777abfea-d410-48c0-b75f-e3a60b819538) 4 | ![Async](https://github.com/user-attachments/assets/7c489f87-c888-4431-a578-cdceb6c33dac) 5 | 6 | A Unity animation project for a visual explanation of Unity's InstantiateAsync API. 7 | --------------------------------------------------------------------------------