diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..1afa4b2
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,12 @@
+name: ci
+
+on:
+ push:
+ pull_request:
+
+jobs:
+ ci:
+ runs-on: ubuntu-latest # technically shit is free, but ubuntu runners are the most common and its good practice
+ steps:
+ - name: placeholder gargle gargle gargle
+ run: echo "ci placeholder, change this when code changes, someone get a linter"
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..7348e39
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,96 @@
+
+# This .gitignore file should be placed at the root of your Unity project directory
+#
+# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
+#
+/[Ll]ibrary/
+/[Tt]emp/
+/[Oo]bj/
+/[Bb]uild/
+/[Bb]uilds/
+/[Ll]ogs/
+/[Uu]ser[Ss]ettings/
+
+# MemoryCaptures can get excessive in size.
+# They also could contain extremely sensitive data
+/[Mm]emoryCaptures/
+
+# Asset meta data should only be ignored when the corresponding asset is also ignored
+!/[Aa]ssets/**/*.meta
+
+# Recordings can get excessive in size
+/[Rr]ecordings/
+
+
+# Uncomment this line if you wish to ignore the asset store tools plugin
+# /[Aa]ssets/AssetStoreTools*
+
+# Autogenerated Jetbrains Rider plugin
+[Aa]ssets/Plugins/Editor/JetBrains*
+
+# Visual Studio cache directory
+.vs/
+
+# Gradle cache directory
+.gradle/
+
+# Autogenerated VS/MD/Consulo solution and project files
+ExportedObj/
+.consulo/
+*.csproj
+*.unityproj
+*.sln
+*.suo
+*.tmp
+*.user
+*.userprefs
+*.pidb
+*.booproj
+*.svd
+*.pdb
+*.mdb
+*.opendb
+*.VC.db
+
+# Unity3D generated meta files
+*.pidb.meta
+*.pdb.meta
+*.mdb.meta
+
+# Unity3D generated file on crash reports
+sysinfo.txt
+
+# Builds
+*.apk
+*.unitypackage
+*.aab
+*.app
+
+# Crashlytics generated file
+crashlytics-build.properties
+
+# macOS Specific
+.DS_Store
+.DS_Store?
+._*
+.Spotlight-V100
+.Trashes
+ehthumbs.db
+Thumbs.db
+report.xml
+Thumbs.db.meta
+
+# JetBrains
+/.idea/
+.idea/**
+
+# Asset Hunter build info
+*.ahbuildinfo
+
+# FMOD
+fmod.log
+fmod_editor.log
+/Assets/Plugins/FMOD/Cache/Editor/FMODStudioCache.asset
+/Assets/Plugins/FMOD/Cache/Editor/FMODStudioCache.asset.meta
+
+/Assets/Plugins/FMOD/Cache/Editor.meta
diff --git a/.vsconfig b/.vsconfig
new file mode 100644
index 0000000..f019fd0
--- /dev/null
+++ b/.vsconfig
@@ -0,0 +1,6 @@
+{
+ "version": "1.0",
+ "components": [
+ "Microsoft.VisualStudio.Workload.ManagedGame"
+ ]
+}
diff --git a/Assets/Readme.asset b/Assets/Readme.asset
new file mode 100644
index 0000000..186e39b
--- /dev/null
+++ b/Assets/Readme.asset
@@ -0,0 +1,39 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: fcf7219bab7fe46a1ad266029b2fee19, type: 3}
+ m_Name: Readme
+ m_EditorClassIdentifier:
+ icon: {fileID: 2800000, guid: d19680cd422524695938fbe55cc3b3bd, type: 3}
+ title: HDRP Empty Template
+ sections:
+ - heading: Welcome to the HDRP Empty Template
+ text: This template includes the settings and assets you need to start creating
+ with HDRP.
+ linkText:
+ url:
+ - heading: Documentation
+ text:
+ linkText: Read more about the HDRP
+ url: https://docs.unity3d.com/Packages/com.unity.render-pipelines.high-definition@latest/index.html
+ - heading: Samples
+ text:
+ linkText: Samples and content you can use in your project
+ url: https://docs.unity3d.com/Packages/com.unity.render-pipelines.high-definition@latest?subfolder=/manual/HDRP-Sample-Content.html
+ - heading: Forums
+ text:
+ linkText: Get answers and support
+ url: https://forum.unity.com/forums/high-definition-render-pipeline.386/
+ - heading: Bugs
+ text:
+ linkText: Report any bugs
+ url: https://unity3d.com/unity/qa/bug-reporting
+ loadedLayout: 1
diff --git a/Assets/Readme.asset.meta b/Assets/Readme.asset.meta
new file mode 100644
index 0000000..fce2d34
--- /dev/null
+++ b/Assets/Readme.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 7f2c382dc2c22446db59030979f6e495
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings.meta b/Assets/Settings.meta
new file mode 100644
index 0000000..5704eb7
--- /dev/null
+++ b/Assets/Settings.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b912c280ff3334ce98f15a14956a3e5c
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/HDRP Balanced.asset b/Assets/Settings/HDRP Balanced.asset
new file mode 100644
index 0000000..3f6aae1
--- /dev/null
+++ b/Assets/Settings/HDRP Balanced.asset
@@ -0,0 +1,554 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 0cf1dab834d4ec34195b920ea7bbf9ec, type: 3}
+ m_Name: HDRP Balanced
+ m_EditorClassIdentifier:
+ m_RenderPipelineSettings:
+ supportShadowMask: 0
+ supportSSR: 0
+ supportSSRTransparent: 0
+ supportSSAO: 1
+ supportSSGI: 0
+ supportSubsurfaceScattering: 1
+ subsurfaceScatteringAttenuation: 1
+ sssSampleBudget:
+ m_Values: 140000002800000050000000
+ m_SchemaId:
+ m_Id: With3Levels
+ sssDownsampleSteps:
+ m_Values: 000000000000000000000000
+ m_SchemaId:
+ m_Id: With3Levels
+ supportVolumetrics: 1
+ supportVolumetricClouds: 0
+ supportLightLayers: 1
+ renderingLayerMaskBuffer: 0
+ supportWater: 0
+ waterSimulationResolution: 128
+ supportWaterExclusion: 0
+ supportWaterHorizontalDeformation: 0
+ supportWaterDecals: 1
+ waterDecalAtlasSize: 1024
+ maximumWaterDecalCount: 48
+ waterScriptInteractionsMode: 0
+ waterFullCPUSimulation: 0
+ supportComputeThickness: 0
+ computeThicknessResolution: 1
+ computeThicknessLayerMask:
+ serializedVersion: 2
+ m_Bits: 0
+ supportDistortion: 1
+ supportTransparentBackface: 1
+ supportTransparentDepthPrepass: 1
+ supportTransparentDepthPostpass: 1
+ colorBufferFormat: 74
+ supportCustomPass: 1
+ supportVariableRateShading: 1
+ customBufferFormat: 12
+ supportedLitShaderMode: 2
+ planarReflectionResolution:
+ m_Values: 000100000004000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ cubeReflectionResolution:
+ m_Values: 000100000002000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ supportDecals: 1
+ supportDecalLayers: 0
+ supportSurfaceGradient: 0
+ decalNormalBufferHP: 0
+ supportHighQualityLineRendering: 0
+ highQualityLineRenderingMemoryBudget: 128
+ msaaSampleCount: 1
+ supportMotionVectors: 1
+ supportScreenSpaceLensFlare: 1
+ supportDataDrivenLensFlare: 1
+ supportDitheringCrossFade: 1
+ supportRuntimeAOVAPI: 0
+ supportTerrainHole: 0
+ lightProbeSystem: 0
+ oldLightProbeSystem: 0
+ probeVolumeMemoryBudget: 1024
+ supportProbeVolumeGPUStreaming: 0
+ supportProbeVolumeDiskStreaming: 0
+ probeVolumeSHBands: 1
+ supportProbeVolumeScenarios: 0
+ supportProbeVolumeScenarioBlending: 1
+ probeVolumeBlendingMemoryBudget: 128
+ supportRayTracing: 0
+ supportVFXRayTracing: 0
+ supportedRayTracingMode: 3
+ lightLoopSettings:
+ cookieAtlasSize: 512
+ cookieFormat: 74
+ cookieAtlasLastValidMip: 0
+ cookieTexArraySize: 16
+ planarReflectionAtlasSize: 1024
+ reflectionProbeCacheSize: 32
+ reflectionCubemapSize: 256
+ maxEnvLightsOnScreen: 32
+ reflectionCacheCompressed: 1
+ reflectionProbeFormat: 74
+ reflectionProbeTexCacheSize: 4096
+ reflectionProbeTexLastValidCubeMip: 3
+ reflectionProbeTexLastValidPlanarMip: 0
+ reflectionProbeDecreaseResToFit: 1
+ skyReflectionSize: 512
+ skyLightingOverrideLayerMask:
+ serializedVersion: 2
+ m_Bits: 0
+ supportFabricConvolution: 0
+ maxDirectionalLightsOnScreen: 16
+ maxPunctualLightsOnScreen: 512
+ maxAreaLightsOnScreen: 64
+ maxCubeReflectionOnScreen: 32
+ maxPlanarReflectionOnScreen: 16
+ maxDecalsOnScreen: 512
+ maxLightsPerClusterCell: 16
+ maxLocalVolumetricFogSize: 32
+ maxLocalVolumetricFogOnScreen: 64
+ hdShadowInitParams:
+ maxShadowRequests: 128
+ directionalShadowsDepthBits: 16
+ punctualShadowFilteringQuality: 1
+ directionalShadowFilteringQuality: 1
+ areaShadowFilteringQuality: 0
+ punctualLightShadowAtlas:
+ shadowAtlasResolution: 4096
+ shadowAtlasDepthBits: 16
+ useDynamicViewportRescale: 1
+ areaLightShadowAtlas:
+ shadowAtlasResolution: 2048
+ shadowAtlasDepthBits: 16
+ useDynamicViewportRescale: 0
+ cachedPunctualLightShadowAtlas: 2048
+ cachedAreaLightShadowAtlas: 2048
+ allowDirectionalMixedCachedShadows: 0
+ shadowResolutionDirectional:
+ m_Values: 00010000000200000004000000080000
+ m_SchemaId:
+ m_Id: With4Levels
+ shadowResolutionPunctual:
+ m_Values: 00010000000200000004000000080000
+ m_SchemaId:
+ m_Id: With4Levels
+ shadowResolutionArea:
+ m_Values: 00010000000200000004000000080000
+ m_SchemaId:
+ m_Id: With4Levels
+ maxDirectionalShadowMapResolution: 2048
+ maxPunctualShadowMapResolution: 2048
+ maxAreaShadowMapResolution: 2048
+ supportScreenSpaceShadows: 0
+ maxScreenSpaceShadowSlots: 4
+ screenSpaceShadowBufferFormat: 48
+ decalSettings:
+ drawDistance: 1000
+ atlasWidth: 2048
+ atlasHeight: 2048
+ transparentTextureResolution:
+ m_Values: 000100000002000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ perChannelMask: 1
+ postProcessSettings:
+ m_LutSize: 32
+ lutFormat: 48
+ bufferFormat: 74
+ dynamicResolutionSettings:
+ enabled: 0
+ useMipBias: 0
+ advancedUpscalersByPriority:
+ DLSSPerfQualitySetting: 0
+ DLSSInjectionPoint: 0
+ TAAUInjectionPoint: 0
+ STPInjectionPoint: 0
+ defaultInjectionPoint: 2
+ DLSSUseOptimalSettings: 0
+ DLSSSharpness: 0
+ FSR2EnableSharpness: 0
+ FSR2Sharpness: 0
+ FSR2UseOptimalSettings: 0
+ FSR2QualitySetting: 0
+ FSR2InjectionPoint: 0
+ fsrOverrideSharpness: 0
+ fsrSharpness: 0.92
+ maxPercentage: 100
+ minPercentage: 100
+ dynResType: 1
+ upsampleFilter: 1
+ forceResolution: 0
+ forcedPercentage: 100
+ lowResTransparencyMinimumThreshold: 0
+ rayTracingHalfResThreshold: 50
+ lowResSSGIMinimumThreshold: 0
+ lowResVolumetricCloudsMinimumThreshold: 50
+ enableDLSS: 0
+ lowresTransparentSettings:
+ enabled: 1
+ checkerboardDepthBuffer: 1
+ upsampleType: 1
+ xrSettings:
+ singlePass: 1
+ occlusionMesh: 1
+ cameraJitter: 0
+ allowMotionBlur: 0
+ postProcessQualitySettings:
+ NearBlurSampleCount: 030000000400000005000000
+ NearBlurMaxRadius:
+ - 2
+ - 3
+ - 4
+ FarBlurSampleCount: 040000000500000007000000
+ FarBlurMaxRadius:
+ - 5
+ - 6
+ - 8
+ DoFResolution: 040000000200000002000000
+ DoFHighQualityFiltering: 000001
+ DoFPhysicallyBased: 000000
+ AdaptiveSamplingWeight:
+ - 0.5
+ - 0.75
+ - 2
+ LimitManualRangeNearBlur: 000000
+ MotionBlurSampleCount: 04000000080000000c000000
+ BloomRes: 040000000200000002000000
+ BloomHighQualityFiltering: 000101
+ BloomHighQualityPrefiltering: 000001
+ ChromaticAberrationMaxSamples: 03000000060000000c000000
+ lightSettings:
+ useContactShadow:
+ m_Values: 000101
+ m_SchemaId:
+ m_Id:
+ maximumLODLevel:
+ m_Values: 000000000000000000000000
+ m_SchemaId:
+ m_Id: With3Levels
+ lodBias:
+ m_Values:
+ - 1
+ - 1
+ - 1
+ m_SchemaId:
+ m_Id: With3Levels
+ lightingQualitySettings:
+ AOStepCount: 040000000600000006000000
+ AOFullRes: 000000
+ AOMaximumRadiusPixels: 200000002000000028000000
+ AOBilateralUpsample: 000001
+ AODirectionCount: 010000000200000002000000
+ ContactShadowSampleCount: 04000000080000000c000000
+ SSRMaxRaySteps: 0c0000001800000030000000
+ SSGIRaySteps: 200000004000000080000000
+ SSGIDenoise: 010101
+ SSGIHalfResDenoise: 010000
+ SSGIDenoiserRadius:
+ - 0.75
+ - 0.5
+ - 0.5
+ SSGISecondDenoise: 010101
+ RTAORayLength:
+ - 0.5
+ - 3
+ - 20
+ RTAOSampleCount: 010000000200000008000000
+ RTAODenoise: 010101
+ RTAODenoiserRadius:
+ - 0.25
+ - 0.5
+ - 0.65
+ RTGIRayLength:
+ - 50
+ - 50
+ - 50
+ RTGIFullResolution: 000001
+ RTGIRaySteps: 200000003000000040000000
+ RTGIDenoise: 010101
+ RTGIHalfResDenoise: 010000
+ RTGIDenoiserRadius:
+ - 0.66
+ - 0.66
+ - 1
+ RTGISecondDenoise: 010101
+ RTRMinSmoothness:
+ - 0.6
+ - 0.4
+ - 0
+ RTRSmoothnessFadeStart:
+ - 0.7
+ - 0.5
+ - 0
+ RTRRayLength:
+ - 50
+ - 50
+ - 50
+ RTRFullResolution: 000001
+ RTRRayMaxIterations: 200000003000000040000000
+ RTRDenoise: 010101
+ RTRDenoiserRadiusDimmer:
+ - 0.75
+ - 0.75
+ - 1
+ RTRDenoiserAntiFlicker:
+ - 1
+ - 1
+ - 1
+ Fog_ControlMode: 000000000000000000000000
+ Fog_Budget:
+ - 0.166
+ - 0.333
+ - 0.666
+ Fog_DepthRatio:
+ - 0.5
+ - 0.5
+ - 0.5
+ gpuResidentDrawerSettings:
+ mode: 0
+ smallMeshScreenPercentage: 0
+ enableOcclusionCullingInCameras: 0
+ useDepthPrepassForOccluders: 1
+ m_ObsoleteLightLayerName0: Light LayerDefault
+ m_ObsoleteLightLayerName1: InteriorOnly
+ m_ObsoleteLightLayerName2: ExteriorOnly
+ m_ObsoleteLightLayerName3: LampsOnly
+ m_ObsoleteLightLayerName4: ReflectionsOnly
+ m_ObsoleteLightLayerName5: Light Layer 5
+ m_ObsoleteLightLayerName6: Light Layer 6
+ m_ObsoleteLightLayerName7: Light Layer 7
+ m_ObsoleteDecalLayerName0: Decal Layer default
+ m_ObsoleteDecalLayerName1: Decal Layer 1
+ m_ObsoleteDecalLayerName2: Decal Layer 2
+ m_ObsoleteDecalLayerName3: Decal Layer 3
+ m_ObsoleteDecalLayerName4: Decal Layer 4
+ m_ObsoleteDecalLayerName5: Decal Layer 5
+ m_ObsoleteDecalLayerName6: Decal Layer 6
+ m_ObsoleteDecalLayerName7: Decal Layer 7
+ m_ObsoleteSupportRuntimeDebugDisplay: 0
+ allowShaderVariantStripping: 1
+ enableSRPBatcher: 1
+ availableMaterialQualityLevels: -1
+ m_DefaultMaterialQualityLevel: 4
+ diffusionProfileSettings: {fileID: 0}
+ m_VolumeProfile: {fileID: 0}
+ virtualTexturingSettings:
+ streamingCpuCacheSizeInMegaBytes: 256
+ streamingMipPreloadTexturesPerFrame: 0
+ streamingPreloadMipCount: 1
+ streamingGpuCacheSettings:
+ - format: 0
+ sizeInMegaBytes: 128
+ m_UseRenderGraph: 1
+ m_CompositorCustomVolumeComponentsList:
+ m_InjectionPoint: 1
+ m_CustomPostProcessTypesAsString: []
+ m_Version: 25
+ m_ObsoleteFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteBakedOrCustomReflectionFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteRealtimeReflectionFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteDefaultVolumeProfile: {fileID: 0}
+ m_ObsoleteDefaultLookDevProfile: {fileID: 11400000, guid: 254c4fe87beb7be4fa72e1681edbed02, type: 2}
+ m_ObsoleteFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 140666621263709
+ data2: 4539628427610619928
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteBakedOrCustomReflectionFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 139742655312669
+ data2: 4539628424389459992
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteRealtimeReflectionFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 139716617048837
+ data2: 4539628424389459992
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteBeforeTransparentCustomPostProcesses: []
+ m_ObsoleteBeforePostProcessCustomPostProcesses: []
+ m_ObsoleteAfterPostProcessCustomPostProcesses: []
+ m_ObsoleteBeforeTAACustomPostProcesses: []
+ m_ObsoleteShaderVariantLogLevel: 0
+ m_ObsoleteLensAttenuation: 0
+ m_ObsoleteDiffusionProfileSettingsList:
+ - {fileID: 0}
+ - {fileID: 0}
+ - {fileID: 11400000, guid: 2b7005ba3a4d8474b8cdc34141ad766e, type: 2}
+ - {fileID: 0}
+ m_PrefilterUseLegacyLightmaps: 0
+ m_PrefilterUseLightmapBicubicSampling: 0
diff --git a/Assets/Settings/HDRP Balanced.asset.meta b/Assets/Settings/HDRP Balanced.asset.meta
new file mode 100644
index 0000000..0df13d1
--- /dev/null
+++ b/Assets/Settings/HDRP Balanced.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 3e2e6bfc59709614ab90c0cd7d755e48
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/HDRP High Fidelity.asset b/Assets/Settings/HDRP High Fidelity.asset
new file mode 100644
index 0000000..2f996ff
--- /dev/null
+++ b/Assets/Settings/HDRP High Fidelity.asset
@@ -0,0 +1,552 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 0cf1dab834d4ec34195b920ea7bbf9ec, type: 3}
+ m_Name: HDRP High Fidelity
+ m_EditorClassIdentifier:
+ m_RenderPipelineSettings:
+ supportShadowMask: 0
+ supportSSR: 0
+ supportSSRTransparent: 0
+ supportSSAO: 1
+ supportSSGI: 1
+ supportSubsurfaceScattering: 1
+ subsurfaceScatteringAttenuation: 1
+ sssSampleBudget:
+ m_Values: 140000002800000050000000
+ m_SchemaId:
+ m_Id: With3Levels
+ sssDownsampleSteps:
+ m_Values: 000000000000000000000000
+ m_SchemaId:
+ m_Id: With3Levels
+ supportVolumetrics: 1
+ supportVolumetricClouds: 0
+ supportLightLayers: 1
+ renderingLayerMaskBuffer: 0
+ supportWater: 0
+ waterSimulationResolution: 128
+ supportWaterExclusion: 0
+ supportWaterHorizontalDeformation: 0
+ supportWaterDecals: 1
+ waterDecalAtlasSize: 1024
+ maximumWaterDecalCount: 48
+ waterScriptInteractionsMode: 0
+ waterFullCPUSimulation: 0
+ supportComputeThickness: 0
+ computeThicknessResolution: 1
+ computeThicknessLayerMask:
+ serializedVersion: 2
+ m_Bits: 0
+ supportDistortion: 1
+ supportTransparentBackface: 1
+ supportTransparentDepthPrepass: 1
+ supportTransparentDepthPostpass: 1
+ colorBufferFormat: 48
+ supportCustomPass: 1
+ supportVariableRateShading: 1
+ customBufferFormat: 12
+ supportedLitShaderMode: 2
+ planarReflectionResolution:
+ m_Values: 000100000004000000080000
+ m_SchemaId:
+ m_Id: With3Levels
+ cubeReflectionResolution:
+ m_Values: 000100000002000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ supportDecals: 1
+ supportDecalLayers: 0
+ supportSurfaceGradient: 0
+ decalNormalBufferHP: 0
+ supportHighQualityLineRendering: 0
+ highQualityLineRenderingMemoryBudget: 128
+ msaaSampleCount: 1
+ supportMotionVectors: 1
+ supportScreenSpaceLensFlare: 1
+ supportDataDrivenLensFlare: 1
+ supportDitheringCrossFade: 1
+ supportRuntimeAOVAPI: 0
+ supportTerrainHole: 0
+ lightProbeSystem: 1
+ oldLightProbeSystem: 1
+ probeVolumeMemoryBudget: 1024
+ supportProbeVolumeGPUStreaming: 0
+ supportProbeVolumeDiskStreaming: 0
+ probeVolumeSHBands: 1
+ supportProbeVolumeScenarios: 0
+ supportProbeVolumeScenarioBlending: 1
+ probeVolumeBlendingMemoryBudget: 128
+ supportRayTracing: 0
+ supportVFXRayTracing: 0
+ supportedRayTracingMode: 3
+ lightLoopSettings:
+ cookieAtlasSize: 512
+ cookieFormat: 74
+ cookieAtlasLastValidMip: 0
+ cookieTexArraySize: 16
+ planarReflectionAtlasSize: 2048
+ reflectionProbeCacheSize: 32
+ reflectionCubemapSize: 256
+ maxEnvLightsOnScreen: 32
+ reflectionCacheCompressed: 1
+ reflectionProbeFormat: 74
+ reflectionProbeTexCacheSize: 4096
+ reflectionProbeTexLastValidCubeMip: 3
+ reflectionProbeTexLastValidPlanarMip: 0
+ reflectionProbeDecreaseResToFit: 1
+ skyReflectionSize: 1024
+ skyLightingOverrideLayerMask:
+ serializedVersion: 2
+ m_Bits: 0
+ supportFabricConvolution: 0
+ maxDirectionalLightsOnScreen: 16
+ maxPunctualLightsOnScreen: 512
+ maxAreaLightsOnScreen: 64
+ maxCubeReflectionOnScreen: 32
+ maxPlanarReflectionOnScreen: 16
+ maxDecalsOnScreen: 512
+ maxLightsPerClusterCell: 16
+ maxLocalVolumetricFogSize: 32
+ maxLocalVolumetricFogOnScreen: 64
+ hdShadowInitParams:
+ maxShadowRequests: 128
+ directionalShadowsDepthBits: 16
+ punctualShadowFilteringQuality: 2
+ directionalShadowFilteringQuality: 2
+ areaShadowFilteringQuality: 0
+ punctualLightShadowAtlas:
+ shadowAtlasResolution: 4096
+ shadowAtlasDepthBits: 16
+ useDynamicViewportRescale: 1
+ areaLightShadowAtlas:
+ shadowAtlasResolution: 4096
+ shadowAtlasDepthBits: 16
+ useDynamicViewportRescale: 0
+ cachedPunctualLightShadowAtlas: 4096
+ cachedAreaLightShadowAtlas: 4096
+ allowDirectionalMixedCachedShadows: 0
+ shadowResolutionDirectional:
+ m_Values: 00020000000400000008000000100000
+ m_SchemaId:
+ m_Id: With4Levels
+ shadowResolutionPunctual:
+ m_Values: 00020000000400000008000000100000
+ m_SchemaId:
+ m_Id: With4Levels
+ shadowResolutionArea:
+ m_Values: 00020000000400000008000000100000
+ m_SchemaId:
+ m_Id: With4Levels
+ maxDirectionalShadowMapResolution: 4096
+ maxPunctualShadowMapResolution: 4096
+ maxAreaShadowMapResolution: 4096
+ supportScreenSpaceShadows: 0
+ maxScreenSpaceShadowSlots: 4
+ screenSpaceShadowBufferFormat: 48
+ decalSettings:
+ drawDistance: 1000
+ atlasWidth: 2048
+ atlasHeight: 2048
+ transparentTextureResolution:
+ m_Values: 000100000002000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ perChannelMask: 1
+ postProcessSettings:
+ m_LutSize: 32
+ lutFormat: 48
+ bufferFormat: 74
+ dynamicResolutionSettings:
+ enabled: 0
+ useMipBias: 0
+ advancedUpscalersByPriority:
+ DLSSPerfQualitySetting: 0
+ DLSSInjectionPoint: 0
+ TAAUInjectionPoint: 0
+ STPInjectionPoint: 0
+ defaultInjectionPoint: 2
+ DLSSUseOptimalSettings: 0
+ DLSSSharpness: 0
+ FSR2EnableSharpness: 0
+ FSR2Sharpness: 0
+ FSR2UseOptimalSettings: 0
+ FSR2QualitySetting: 0
+ FSR2InjectionPoint: 0
+ fsrOverrideSharpness: 0
+ fsrSharpness: 0.92
+ maxPercentage: 100
+ minPercentage: 100
+ dynResType: 1
+ upsampleFilter: 1
+ forceResolution: 0
+ forcedPercentage: 100
+ lowResTransparencyMinimumThreshold: 0
+ rayTracingHalfResThreshold: 50
+ lowResSSGIMinimumThreshold: 0
+ lowResVolumetricCloudsMinimumThreshold: 50
+ enableDLSS: 0
+ lowresTransparentSettings:
+ enabled: 1
+ checkerboardDepthBuffer: 1
+ upsampleType: 1
+ xrSettings:
+ singlePass: 1
+ occlusionMesh: 1
+ cameraJitter: 0
+ allowMotionBlur: 0
+ postProcessQualitySettings:
+ NearBlurSampleCount: 030000000500000008000000
+ NearBlurMaxRadius:
+ - 2
+ - 4
+ - 7
+ FarBlurSampleCount: 04000000070000000e000000
+ FarBlurMaxRadius:
+ - 5
+ - 8
+ - 13
+ DoFResolution: 040000000200000001000000
+ DoFHighQualityFiltering: 000101
+ DoFPhysicallyBased: 000000
+ AdaptiveSamplingWeight:
+ - 0.5
+ - 0.75
+ - 2
+ LimitManualRangeNearBlur: 000000
+ MotionBlurSampleCount: 04000000080000000c000000
+ BloomRes: 040000000200000002000000
+ BloomHighQualityFiltering: 000101
+ BloomHighQualityPrefiltering: 000001
+ ChromaticAberrationMaxSamples: 03000000060000000c000000
+ lightSettings:
+ useContactShadow:
+ m_Values: 000101
+ m_SchemaId:
+ m_Id:
+ maximumLODLevel:
+ m_Values: 000000000000000000000000
+ m_SchemaId:
+ m_Id: With3Levels
+ lodBias:
+ m_Values:
+ - 1
+ - 1
+ - 1
+ m_SchemaId:
+ m_Id: With3Levels
+ lightingQualitySettings:
+ AOStepCount: 040000000600000010000000
+ AOFullRes: 000001
+ AOMaximumRadiusPixels: 200000002800000050000000
+ AOBilateralUpsample: 000101
+ AODirectionCount: 010000000200000004000000
+ ContactShadowSampleCount: 060000000a00000010000000
+ SSRMaxRaySteps: 100000002000000040000000
+ SSGIRaySteps: 200000004000000080000000
+ SSGIDenoise: 010101
+ SSGIHalfResDenoise: 010000
+ SSGIDenoiserRadius:
+ - 0.75
+ - 0.5
+ - 0.5
+ SSGISecondDenoise: 010101
+ RTAORayLength:
+ - 0.5
+ - 3
+ - 20
+ RTAOSampleCount: 010000000200000008000000
+ RTAODenoise: 010101
+ RTAODenoiserRadius:
+ - 0.25
+ - 0.5
+ - 0.65
+ RTGIRayLength:
+ - 50
+ - 50
+ - 50
+ RTGIFullResolution: 000001
+ RTGIRaySteps: 200000003000000040000000
+ RTGIDenoise: 010101
+ RTGIHalfResDenoise: 010000
+ RTGIDenoiserRadius:
+ - 0.66
+ - 0.66
+ - 1
+ RTGISecondDenoise: 010101
+ RTRMinSmoothness:
+ - 0.6
+ - 0.4
+ - 0
+ RTRSmoothnessFadeStart:
+ - 0.7
+ - 0.5
+ - 0
+ RTRRayLength:
+ - 50
+ - 50
+ - 50
+ RTRFullResolution: 000001
+ RTRRayMaxIterations: 200000003000000040000000
+ RTRDenoise: 010101
+ RTRDenoiserRadiusDimmer:
+ - 0.75
+ - 0.75
+ - 1
+ RTRDenoiserAntiFlicker:
+ - 1
+ - 1
+ - 1
+ Fog_ControlMode: 000000000000000000000000
+ Fog_Budget:
+ - 0.25
+ - 0.5
+ - 0.75
+ Fog_DepthRatio:
+ - 0.5
+ - 0.5
+ - 0.5
+ gpuResidentDrawerSettings:
+ mode: 0
+ smallMeshScreenPercentage: 0
+ enableOcclusionCullingInCameras: 0
+ useDepthPrepassForOccluders: 1
+ m_ObsoleteLightLayerName0: Light LayerDefault
+ m_ObsoleteLightLayerName1: InteriorOnly
+ m_ObsoleteLightLayerName2: ExteriorOnly
+ m_ObsoleteLightLayerName3: LampsOnly
+ m_ObsoleteLightLayerName4: Light Layer 4
+ m_ObsoleteLightLayerName5: Light Layer 5
+ m_ObsoleteLightLayerName6: Light Layer 6
+ m_ObsoleteLightLayerName7: Light Layer 7
+ m_ObsoleteDecalLayerName0: Decal Layer default
+ m_ObsoleteDecalLayerName1: Decal Layer 1
+ m_ObsoleteDecalLayerName2: Decal Layer 2
+ m_ObsoleteDecalLayerName3: Decal Layer 3
+ m_ObsoleteDecalLayerName4: Decal Layer 4
+ m_ObsoleteDecalLayerName5: Decal Layer 5
+ m_ObsoleteDecalLayerName6: Decal Layer 6
+ m_ObsoleteDecalLayerName7: Decal Layer 7
+ m_ObsoleteSupportRuntimeDebugDisplay: 0
+ allowShaderVariantStripping: 1
+ enableSRPBatcher: 1
+ availableMaterialQualityLevels: -1
+ m_DefaultMaterialQualityLevel: 4
+ diffusionProfileSettings: {fileID: 0}
+ m_VolumeProfile: {fileID: 0}
+ virtualTexturingSettings:
+ streamingCpuCacheSizeInMegaBytes: 256
+ streamingMipPreloadTexturesPerFrame: 0
+ streamingPreloadMipCount: 1
+ streamingGpuCacheSettings:
+ - format: 0
+ sizeInMegaBytes: 128
+ m_UseRenderGraph: 1
+ m_CompositorCustomVolumeComponentsList:
+ m_InjectionPoint: 1
+ m_CustomPostProcessTypesAsString: []
+ m_Version: 25
+ m_ObsoleteFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteBakedOrCustomReflectionFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteRealtimeReflectionFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteDefaultVolumeProfile: {fileID: 0}
+ m_ObsoleteDefaultLookDevProfile: {fileID: 11400000, guid: 254c4fe87beb7be4fa72e1681edbed02, type: 2}
+ m_ObsoleteFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 140666621394781
+ data2: 4539628425463136280
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteBakedOrCustomReflectionFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 139742655312669
+ data2: 4539628424389459992
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteRealtimeReflectionFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 139991494955789
+ data2: 4539628424389459992
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteBeforeTransparentCustomPostProcesses: []
+ m_ObsoleteBeforePostProcessCustomPostProcesses: []
+ m_ObsoleteAfterPostProcessCustomPostProcesses: []
+ m_ObsoleteBeforeTAACustomPostProcesses: []
+ m_ObsoleteShaderVariantLogLevel: 0
+ m_ObsoleteLensAttenuation: 0
+ m_ObsoleteDiffusionProfileSettingsList:
+ - {fileID: 0}
+ - {fileID: 0}
+ m_PrefilterUseLegacyLightmaps: 0
+ m_PrefilterUseLightmapBicubicSampling: 0
diff --git a/Assets/Settings/HDRP High Fidelity.asset.meta b/Assets/Settings/HDRP High Fidelity.asset.meta
new file mode 100644
index 0000000..556a763
--- /dev/null
+++ b/Assets/Settings/HDRP High Fidelity.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 36dd385e759c96147b6463dcd1149c11
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/HDRP Performant.asset b/Assets/Settings/HDRP Performant.asset
new file mode 100644
index 0000000..98b26cd
--- /dev/null
+++ b/Assets/Settings/HDRP Performant.asset
@@ -0,0 +1,553 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 0cf1dab834d4ec34195b920ea7bbf9ec, type: 3}
+ m_Name: HDRP Performant
+ m_EditorClassIdentifier:
+ m_RenderPipelineSettings:
+ supportShadowMask: 0
+ supportSSR: 0
+ supportSSRTransparent: 0
+ supportSSAO: 1
+ supportSSGI: 0
+ supportSubsurfaceScattering: 1
+ subsurfaceScatteringAttenuation: 1
+ sssSampleBudget:
+ m_Values: 140000002800000050000000
+ m_SchemaId:
+ m_Id: With3Levels
+ sssDownsampleSteps:
+ m_Values: 000000000000000000000000
+ m_SchemaId:
+ m_Id: With3Levels
+ supportVolumetrics: 0
+ supportVolumetricClouds: 0
+ supportLightLayers: 1
+ renderingLayerMaskBuffer: 0
+ supportWater: 0
+ waterSimulationResolution: 128
+ supportWaterExclusion: 0
+ supportWaterHorizontalDeformation: 0
+ supportWaterDecals: 1
+ waterDecalAtlasSize: 1024
+ maximumWaterDecalCount: 48
+ waterScriptInteractionsMode: 0
+ waterFullCPUSimulation: 0
+ supportComputeThickness: 0
+ computeThicknessResolution: 1
+ computeThicknessLayerMask:
+ serializedVersion: 2
+ m_Bits: 0
+ supportDistortion: 1
+ supportTransparentBackface: 1
+ supportTransparentDepthPrepass: 1
+ supportTransparentDepthPostpass: 1
+ colorBufferFormat: 74
+ supportCustomPass: 1
+ supportVariableRateShading: 1
+ customBufferFormat: 12
+ supportedLitShaderMode: 2
+ planarReflectionResolution:
+ m_Values: 000100000002000000020000
+ m_SchemaId:
+ m_Id: With3Levels
+ cubeReflectionResolution:
+ m_Values: 000100000002000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ supportDecals: 1
+ supportDecalLayers: 0
+ supportSurfaceGradient: 0
+ decalNormalBufferHP: 0
+ supportHighQualityLineRendering: 0
+ highQualityLineRenderingMemoryBudget: 128
+ msaaSampleCount: 1
+ supportMotionVectors: 1
+ supportScreenSpaceLensFlare: 1
+ supportDataDrivenLensFlare: 1
+ supportDitheringCrossFade: 1
+ supportRuntimeAOVAPI: 0
+ supportTerrainHole: 0
+ lightProbeSystem: 0
+ oldLightProbeSystem: 0
+ probeVolumeMemoryBudget: 1024
+ supportProbeVolumeGPUStreaming: 0
+ supportProbeVolumeDiskStreaming: 0
+ probeVolumeSHBands: 1
+ supportProbeVolumeScenarios: 0
+ supportProbeVolumeScenarioBlending: 1
+ probeVolumeBlendingMemoryBudget: 128
+ supportRayTracing: 0
+ supportVFXRayTracing: 0
+ supportedRayTracingMode: 3
+ lightLoopSettings:
+ cookieAtlasSize: 512
+ cookieFormat: 74
+ cookieAtlasLastValidMip: 0
+ cookieTexArraySize: 16
+ planarReflectionAtlasSize: 512
+ reflectionProbeCacheSize: 32
+ reflectionCubemapSize: 256
+ maxEnvLightsOnScreen: 32
+ reflectionCacheCompressed: 1
+ reflectionProbeFormat: 74
+ reflectionProbeTexCacheSize: 4096
+ reflectionProbeTexLastValidCubeMip: 3
+ reflectionProbeTexLastValidPlanarMip: 0
+ reflectionProbeDecreaseResToFit: 1
+ skyReflectionSize: 256
+ skyLightingOverrideLayerMask:
+ serializedVersion: 2
+ m_Bits: 0
+ supportFabricConvolution: 0
+ maxDirectionalLightsOnScreen: 16
+ maxPunctualLightsOnScreen: 512
+ maxAreaLightsOnScreen: 64
+ maxCubeReflectionOnScreen: 32
+ maxPlanarReflectionOnScreen: 16
+ maxDecalsOnScreen: 512
+ maxLightsPerClusterCell: 16
+ maxLocalVolumetricFogSize: 32
+ maxLocalVolumetricFogOnScreen: 64
+ hdShadowInitParams:
+ maxShadowRequests: 128
+ directionalShadowsDepthBits: 16
+ punctualShadowFilteringQuality: 1
+ directionalShadowFilteringQuality: 1
+ areaShadowFilteringQuality: 0
+ punctualLightShadowAtlas:
+ shadowAtlasResolution: 4096
+ shadowAtlasDepthBits: 16
+ useDynamicViewportRescale: 1
+ areaLightShadowAtlas:
+ shadowAtlasResolution: 2048
+ shadowAtlasDepthBits: 16
+ useDynamicViewportRescale: 0
+ cachedPunctualLightShadowAtlas: 2048
+ cachedAreaLightShadowAtlas: 2048
+ allowDirectionalMixedCachedShadows: 0
+ shadowResolutionDirectional:
+ m_Values: 80000000000100000002000000040000
+ m_SchemaId:
+ m_Id: With4Levels
+ shadowResolutionPunctual:
+ m_Values: 00010000000200000004000000080000
+ m_SchemaId:
+ m_Id: With4Levels
+ shadowResolutionArea:
+ m_Values: 00010000000200000004000000080000
+ m_SchemaId:
+ m_Id: With4Levels
+ maxDirectionalShadowMapResolution: 1024
+ maxPunctualShadowMapResolution: 2048
+ maxAreaShadowMapResolution: 2048
+ supportScreenSpaceShadows: 0
+ maxScreenSpaceShadowSlots: 4
+ screenSpaceShadowBufferFormat: 48
+ decalSettings:
+ drawDistance: 1000
+ atlasWidth: 2048
+ atlasHeight: 2048
+ transparentTextureResolution:
+ m_Values: 000100000002000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ perChannelMask: 1
+ postProcessSettings:
+ m_LutSize: 32
+ lutFormat: 48
+ bufferFormat: 74
+ dynamicResolutionSettings:
+ enabled: 0
+ useMipBias: 0
+ advancedUpscalersByPriority:
+ DLSSPerfQualitySetting: 0
+ DLSSInjectionPoint: 0
+ TAAUInjectionPoint: 0
+ STPInjectionPoint: 0
+ defaultInjectionPoint: 2
+ DLSSUseOptimalSettings: 0
+ DLSSSharpness: 0
+ FSR2EnableSharpness: 0
+ FSR2Sharpness: 0
+ FSR2UseOptimalSettings: 0
+ FSR2QualitySetting: 0
+ FSR2InjectionPoint: 0
+ fsrOverrideSharpness: 0
+ fsrSharpness: 0.92
+ maxPercentage: 100
+ minPercentage: 100
+ dynResType: 1
+ upsampleFilter: 1
+ forceResolution: 0
+ forcedPercentage: 100
+ lowResTransparencyMinimumThreshold: 0
+ rayTracingHalfResThreshold: 50
+ lowResSSGIMinimumThreshold: 0
+ lowResVolumetricCloudsMinimumThreshold: 50
+ enableDLSS: 0
+ lowresTransparentSettings:
+ enabled: 1
+ checkerboardDepthBuffer: 1
+ upsampleType: 1
+ xrSettings:
+ singlePass: 1
+ occlusionMesh: 1
+ cameraJitter: 0
+ allowMotionBlur: 0
+ postProcessQualitySettings:
+ NearBlurSampleCount: 030000000400000004000000
+ NearBlurMaxRadius:
+ - 2
+ - 3
+ - 3
+ FarBlurSampleCount: 040000000500000005000000
+ FarBlurMaxRadius:
+ - 5
+ - 6
+ - 6
+ DoFResolution: 040000000400000002000000
+ DoFHighQualityFiltering: 000100
+ DoFPhysicallyBased: 000000
+ AdaptiveSamplingWeight:
+ - 0.5
+ - 0.75
+ - 2
+ LimitManualRangeNearBlur: 000000
+ MotionBlurSampleCount: 04000000080000000c000000
+ BloomRes: 040000000200000002000000
+ BloomHighQualityFiltering: 000101
+ BloomHighQualityPrefiltering: 000001
+ ChromaticAberrationMaxSamples: 03000000060000000c000000
+ lightSettings:
+ useContactShadow:
+ m_Values: 000101
+ m_SchemaId:
+ m_Id:
+ maximumLODLevel:
+ m_Values: 000000000000000000000000
+ m_SchemaId:
+ m_Id: With3Levels
+ lodBias:
+ m_Values:
+ - 1
+ - 1
+ - 1
+ m_SchemaId:
+ m_Id: With3Levels
+ lightingQualitySettings:
+ AOStepCount: 030000000400000006000000
+ AOFullRes: 000000
+ AOMaximumRadiusPixels: 180000002000000020000000
+ AOBilateralUpsample: 000000
+ AODirectionCount: 010000000100000002000000
+ ContactShadowSampleCount: 04000000060000000a000000
+ SSRMaxRaySteps: 080000001000000020000000
+ SSGIRaySteps: 200000004000000080000000
+ SSGIDenoise: 010101
+ SSGIHalfResDenoise: 010000
+ SSGIDenoiserRadius:
+ - 0.75
+ - 0.5
+ - 0.5
+ SSGISecondDenoise: 010101
+ RTAORayLength:
+ - 0.5
+ - 3
+ - 20
+ RTAOSampleCount: 010000000200000008000000
+ RTAODenoise: 010101
+ RTAODenoiserRadius:
+ - 0.25
+ - 0.5
+ - 0.65
+ RTGIRayLength:
+ - 50
+ - 50
+ - 50
+ RTGIFullResolution: 000001
+ RTGIRaySteps: 200000003000000040000000
+ RTGIDenoise: 010101
+ RTGIHalfResDenoise: 010000
+ RTGIDenoiserRadius:
+ - 0.66
+ - 0.66
+ - 1
+ RTGISecondDenoise: 010101
+ RTRMinSmoothness:
+ - 0.6
+ - 0.4
+ - 0
+ RTRSmoothnessFadeStart:
+ - 0.7
+ - 0.5
+ - 0
+ RTRRayLength:
+ - 50
+ - 50
+ - 50
+ RTRFullResolution: 000001
+ RTRRayMaxIterations: 200000003000000040000000
+ RTRDenoise: 010101
+ RTRDenoiserRadiusDimmer:
+ - 0.75
+ - 0.75
+ - 1
+ RTRDenoiserAntiFlicker:
+ - 1
+ - 1
+ - 1
+ Fog_ControlMode: 000000000000000000000000
+ Fog_Budget:
+ - 0.125
+ - 0.25
+ - 0.5
+ Fog_DepthRatio:
+ - 0.5
+ - 0.5
+ - 0.5
+ gpuResidentDrawerSettings:
+ mode: 0
+ smallMeshScreenPercentage: 0
+ enableOcclusionCullingInCameras: 0
+ useDepthPrepassForOccluders: 1
+ m_ObsoleteLightLayerName0: Light LayerDefault
+ m_ObsoleteLightLayerName1: InteriorOnly
+ m_ObsoleteLightLayerName2: ExteriorOnly
+ m_ObsoleteLightLayerName3: LampsOnly
+ m_ObsoleteLightLayerName4: ReflectionsOnly
+ m_ObsoleteLightLayerName5: Light Layer 5
+ m_ObsoleteLightLayerName6: Light Layer 6
+ m_ObsoleteLightLayerName7: Light Layer 7
+ m_ObsoleteDecalLayerName0: Decal Layer default
+ m_ObsoleteDecalLayerName1: Decal Layer 1
+ m_ObsoleteDecalLayerName2: Decal Layer 2
+ m_ObsoleteDecalLayerName3: Decal Layer 3
+ m_ObsoleteDecalLayerName4: Decal Layer 4
+ m_ObsoleteDecalLayerName5: Decal Layer 5
+ m_ObsoleteDecalLayerName6: Decal Layer 6
+ m_ObsoleteDecalLayerName7: Decal Layer 7
+ m_ObsoleteSupportRuntimeDebugDisplay: 0
+ allowShaderVariantStripping: 1
+ enableSRPBatcher: 1
+ availableMaterialQualityLevels: -1
+ m_DefaultMaterialQualityLevel: 4
+ diffusionProfileSettings: {fileID: 0}
+ m_VolumeProfile: {fileID: 0}
+ virtualTexturingSettings:
+ streamingCpuCacheSizeInMegaBytes: 256
+ streamingMipPreloadTexturesPerFrame: 0
+ streamingPreloadMipCount: 1
+ streamingGpuCacheSettings:
+ - format: 0
+ sizeInMegaBytes: 128
+ m_UseRenderGraph: 1
+ m_CompositorCustomVolumeComponentsList:
+ m_InjectionPoint: 1
+ m_CustomPostProcessTypesAsString: []
+ m_Version: 25
+ m_ObsoleteFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteBakedOrCustomReflectionFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteRealtimeReflectionFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteDefaultVolumeProfile: {fileID: 0}
+ m_ObsoleteDefaultLookDevProfile: {fileID: 11400000, guid: 254c4fe87beb7be4fa72e1681edbed02, type: 2}
+ m_ObsoleteFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 140666621394781
+ data2: 4539628425463136280
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteBakedOrCustomReflectionFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 139742655312669
+ data2: 4539628424389459992
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteRealtimeReflectionFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 139716617048837
+ data2: 4539628424389459992
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteBeforeTransparentCustomPostProcesses: []
+ m_ObsoleteBeforePostProcessCustomPostProcesses: []
+ m_ObsoleteAfterPostProcessCustomPostProcesses: []
+ m_ObsoleteBeforeTAACustomPostProcesses: []
+ m_ObsoleteShaderVariantLogLevel: 0
+ m_ObsoleteLensAttenuation: 0
+ m_ObsoleteDiffusionProfileSettingsList:
+ - {fileID: 0}
+ - {fileID: 0}
+ - {fileID: 11400000, guid: 2b7005ba3a4d8474b8cdc34141ad766e, type: 2}
+ m_PrefilterUseLegacyLightmaps: 0
+ m_PrefilterUseLightmapBicubicSampling: 0
diff --git a/Assets/Settings/HDRP Performant.asset.meta b/Assets/Settings/HDRP Performant.asset.meta
new file mode 100644
index 0000000..e6f7b1c
--- /dev/null
+++ b/Assets/Settings/HDRP Performant.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 168a2336534e4e043b2a210b6f8d379a
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 0
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/HDRPDefaultResources.meta b/Assets/Settings/HDRPDefaultResources.meta
new file mode 100644
index 0000000..bc14cdc
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 181cd982040374fac84aed5329ef5583
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/HDRPDefaultResources/DefaultLookDevProfile.asset b/Assets/Settings/HDRPDefaultResources/DefaultLookDevProfile.asset
new file mode 100644
index 0000000..67114ab
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources/DefaultLookDevProfile.asset
@@ -0,0 +1,220 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
+ m_Name: DefaultLookDevProfile
+ m_EditorClassIdentifier:
+ components:
+ - {fileID: 8761387877531654226}
+ - {fileID: 1902828633788537306}
+ - {fileID: 1880163708194025631}
+ - {fileID: 2340290907100754200}
+--- !u!114 &1880163708194025631
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 9008a067f4d626c4d8bc4bc48f04bb89, type: 3}
+ m_Name: AmbientOcclusion
+ m_EditorClassIdentifier:
+ active: 1
+ quality:
+ m_OverrideState: 0
+ m_Value: 1
+ rayTracing:
+ m_OverrideState: 0
+ m_Value: 0
+ intensity:
+ m_OverrideState: 1
+ m_Value: 0.5
+ directLightingStrength:
+ m_OverrideState: 0
+ m_Value: 0
+ radius:
+ m_OverrideState: 1
+ m_Value: 1
+ spatialBilateralAggressiveness:
+ m_OverrideState: 0
+ m_Value: 0.15
+ temporalAccumulation:
+ m_OverrideState: 0
+ m_Value: 1
+ ghostingReduction:
+ m_OverrideState: 0
+ m_Value: 0.5
+ blurSharpness:
+ m_OverrideState: 0
+ m_Value: 0.1
+ layerMask:
+ m_OverrideState: 0
+ m_Value:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_StepCount:
+ m_OverrideState: 0
+ m_Value: 6
+ m_FullResolution:
+ m_OverrideState: 0
+ m_Value: 0
+ m_MaximumRadiusInPixels:
+ m_OverrideState: 0
+ m_Value: 40
+ m_BilateralUpsample:
+ m_OverrideState: 0
+ m_Value: 1
+ m_DirectionCount:
+ m_OverrideState: 0
+ m_Value: 2
+ m_RayLength:
+ m_OverrideState: 0
+ m_Value: 3
+ m_SampleCount:
+ m_OverrideState: 0
+ m_Value: 2
+ m_Denoise:
+ m_OverrideState: 0
+ m_Value: 1
+ m_DenoiserRadius:
+ m_OverrideState: 0
+ m_Value: 0.5
+--- !u!114 &1902828633788537306
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 7ddcec8a8eb2d684d833ac8f5d26aebd, type: 3}
+ m_Name: HDShadowSettings
+ m_EditorClassIdentifier:
+ active: 1
+ maxShadowDistance:
+ m_OverrideState: 1
+ m_Value: 25
+ directionalTransmissionMultiplier:
+ m_OverrideState: 0
+ m_Value: 1
+ cascadeShadowSplitCount:
+ m_OverrideState: 1
+ m_Value: 2
+ cascadeShadowSplit0:
+ m_OverrideState: 0
+ m_Value: 0.05
+ cascadeShadowSplit1:
+ m_OverrideState: 0
+ m_Value: 0.15
+ cascadeShadowSplit2:
+ m_OverrideState: 0
+ m_Value: 0.3
+ cascadeShadowBorder0:
+ m_OverrideState: 0
+ m_Value: 0
+ cascadeShadowBorder1:
+ m_OverrideState: 0
+ m_Value: 0
+ cascadeShadowBorder2:
+ m_OverrideState: 0
+ m_Value: 0
+ cascadeShadowBorder3:
+ m_OverrideState: 0
+ m_Value: 0
+--- !u!114 &2340290907100754200
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 24f077503be6ae942a1e1245dbd53ea9, type: 3}
+ m_Name: Bloom
+ m_EditorClassIdentifier:
+ active: 1
+ quality:
+ m_OverrideState: 0
+ m_Value: 3
+ threshold:
+ m_OverrideState: 0
+ m_Value: 0
+ intensity:
+ m_OverrideState: 1
+ m_Value: 0.1
+ scatter:
+ m_OverrideState: 0
+ m_Value: 0.7
+ tint:
+ m_OverrideState: 0
+ m_Value: {r: 1, g: 1, b: 1, a: 1}
+ dirtTexture:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ dirtIntensity:
+ m_OverrideState: 0
+ m_Value: 0
+ anamorphic:
+ m_OverrideState: 0
+ m_Value: 1
+ m_Resolution:
+ m_OverrideState: 0
+ m_Value: 2
+ m_HighQualityPrefiltering:
+ m_OverrideState: 0
+ m_Value: 0
+ m_HighQualityFiltering:
+ m_OverrideState: 0
+ m_Value: 1
+--- !u!114 &8761387877531654226
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f086a068d4c5889438831b3ae9afc11c, type: 3}
+ m_Name: Tonemapping
+ m_EditorClassIdentifier:
+ active: 1
+ mode:
+ m_OverrideState: 1
+ m_Value: 1
+ toeStrength:
+ m_OverrideState: 0
+ m_Value: 0
+ toeLength:
+ m_OverrideState: 0
+ m_Value: 0.5
+ shoulderStrength:
+ m_OverrideState: 0
+ m_Value: 0
+ shoulderLength:
+ m_OverrideState: 0
+ m_Value: 0.5
+ shoulderAngle:
+ m_OverrideState: 0
+ m_Value: 0
+ gamma:
+ m_OverrideState: 0
+ m_Value: 1
+ lutTexture:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ lutContribution:
+ m_OverrideState: 0
+ m_Value: 1
diff --git a/Assets/Settings/HDRPDefaultResources/DefaultLookDevProfile.asset.meta b/Assets/Settings/HDRPDefaultResources/DefaultLookDevProfile.asset.meta
new file mode 100644
index 0000000..d2ffa56
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources/DefaultLookDevProfile.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 4594f4a3fb14247e192bcca6dc23c8ed
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset b/Assets/Settings/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset
new file mode 100644
index 0000000..42a86ac
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset
@@ -0,0 +1,724 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &-8500501345142028434
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 7a7ff42a8c5be6646ad3975f3a54c1eb, type: 3}
+ m_Name: DiffusionProfileList
+ m_EditorClassIdentifier:
+ active: 1
+ diffusionProfiles:
+ m_OverrideState: 1
+ m_Value:
+ - {fileID: 11400000, guid: 404820c4cf36ad944862fa59c56064f0, type: 2}
+ - {fileID: 11400000, guid: 2384dbf2c1c420f45a792fbc315fbfb1, type: 2}
+--- !u!114 &-7089757308646879465
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: bcf384b154398e341b6b29969c078198, type: 3}
+ m_Name: MotionBlur
+ m_EditorClassIdentifier:
+ active: 1
+ quality:
+ m_OverrideState: 1
+ m_Value: 1
+ intensity:
+ m_OverrideState: 1
+ m_Value: 0.5
+ maximumVelocity:
+ m_OverrideState: 0
+ m_Value: 200
+ minimumVelocity:
+ m_OverrideState: 0
+ m_Value: 2
+ cameraMotionBlur:
+ m_OverrideState: 0
+ m_Value: 1
+ specialCameraClampMode:
+ m_OverrideState: 0
+ m_Value: 0
+ cameraVelocityClamp:
+ m_OverrideState: 0
+ m_Value: 0.05
+ cameraTranslationVelocityClamp:
+ m_OverrideState: 0
+ m_Value: 0.05
+ cameraRotationVelocityClamp:
+ m_OverrideState: 0
+ m_Value: 0.03
+ depthComparisonExtent:
+ m_OverrideState: 0
+ m_Value: 1
+ m_SampleCount:
+ m_OverrideState: 1
+ m_Value: 8
+--- !u!114 &-1016694868962581565
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 56b145d2b9ee1ac4f846968484e7485a, type: 3}
+ m_Name: ContactShadows
+ m_EditorClassIdentifier:
+ active: 1
+ quality:
+ m_OverrideState: 0
+ m_Value: 1
+ enable:
+ m_OverrideState: 1
+ m_Value: 1
+ length:
+ m_OverrideState: 0
+ m_Value: 0.15
+ opacity:
+ m_OverrideState: 0
+ m_Value: 1
+ distanceScaleFactor:
+ m_OverrideState: 0
+ m_Value: 0.5
+ maxDistance:
+ m_OverrideState: 0
+ m_Value: 50
+ minDistance:
+ m_OverrideState: 0
+ m_Value: 0
+ fadeDistance:
+ m_OverrideState: 0
+ m_Value: 5
+ fadeInDistance:
+ m_OverrideState: 0
+ m_Value: 0
+ rayBias:
+ m_OverrideState: 0
+ m_Value: 0.2
+ thicknessScale:
+ m_OverrideState: 0
+ m_Value: 0.15
+ m_SampleCount:
+ m_OverrideState: 0
+ m_Value: 10
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
+ m_Name: DefaultSettingsVolumeProfile
+ m_EditorClassIdentifier:
+ components:
+ - {fileID: 7686318427622180703}
+ - {fileID: -1016694868962581565}
+ - {fileID: 7502528774814404555}
+ - {fileID: 7542669330009093999}
+ - {fileID: 1501199423866068322}
+ - {fileID: 5315503232242033309}
+ - {fileID: 1932259527246508038}
+ - {fileID: 448115243408767295}
+ - {fileID: -7089757308646879465}
+ - {fileID: -8500501345142028434}
+ - {fileID: 2097231660816403494}
+--- !u!114 &448115243408767295
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 59b6606ef2548734bb6d11b9d160bc7e, type: 3}
+ m_Name: HDRISky
+ m_EditorClassIdentifier:
+ active: 1
+ rotation:
+ m_OverrideState: 0
+ m_Value: 0
+ skyIntensityMode:
+ m_OverrideState: 0
+ m_Value: 0
+ exposure:
+ m_OverrideState: 1
+ m_Value: 11
+ multiplier:
+ m_OverrideState: 0
+ m_Value: 1
+ upperHemisphereLuxValue:
+ m_OverrideState: 1
+ m_Value: 0.4660715
+ upperHemisphereLuxColor:
+ m_OverrideState: 1
+ m_Value: {x: 0.18750614, y: 0.29181972, z: 0.5}
+ desiredLuxValue:
+ m_OverrideState: 0
+ m_Value: 20000
+ updateMode:
+ m_OverrideState: 0
+ m_Value: 0
+ updatePeriod:
+ m_OverrideState: 0
+ m_Value: 0
+ includeSunInBaking:
+ m_OverrideState: 0
+ m_Value: 0
+ hdriSky:
+ m_OverrideState: 1
+ m_Value: {fileID: 8900000, guid: 8253d41e6e8b11a4cbe77a4f8f82934d, type: 3}
+ distortionMode:
+ m_OverrideState: 0
+ m_Value: 0
+ flowmap:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ upperHemisphereOnly:
+ m_OverrideState: 0
+ m_Value: 1
+ scrollOrientation:
+ m_OverrideState: 0
+ m_Value:
+ mode: 1
+ customValue: 0
+ additiveValue: 0
+ multiplyValue: 1
+ scrollSpeed:
+ m_OverrideState: 0
+ m_Value:
+ mode: 1
+ customValue: 100
+ additiveValue: 0
+ multiplyValue: 1
+ sunInitialRotation:
+ m_OverrideState: 0
+ m_Value: -Infinity
+ lockSun:
+ m_OverrideState: 0
+ m_Value: 0
+ enableBackplate:
+ m_OverrideState: 0
+ m_Value: 0
+ backplateType:
+ m_OverrideState: 0
+ m_Value: 0
+ groundLevel:
+ m_OverrideState: 0
+ m_Value: 0
+ scale:
+ m_OverrideState: 0
+ m_Value: {x: 32, y: 32}
+ projectionDistance:
+ m_OverrideState: 0
+ m_Value: 16
+ plateRotation:
+ m_OverrideState: 0
+ m_Value: 0
+ plateTexRotation:
+ m_OverrideState: 0
+ m_Value: 0
+ plateTexOffset:
+ m_OverrideState: 0
+ m_Value: {x: 0, y: 0}
+ blendAmount:
+ m_OverrideState: 0
+ m_Value: 0
+ shadowTint:
+ m_OverrideState: 0
+ m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ pointLightShadow:
+ m_OverrideState: 0
+ m_Value: 0
+ dirLightShadow:
+ m_OverrideState: 0
+ m_Value: 0
+ rectLightShadow:
+ m_OverrideState: 0
+ m_Value: 0
+ m_SkyVersion: 1
+ enableDistortion:
+ m_OverrideState: 0
+ m_Value: 0
+ procedural:
+ m_OverrideState: 0
+ m_Value: 1
+ scrollDirection:
+ m_OverrideState: 0
+ m_Value: 0
+ m_ObsoleteScrollSpeed:
+ m_OverrideState: 0
+ m_Value: 1
+--- !u!114 &1501199423866068322
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 24f077503be6ae942a1e1245dbd53ea9, type: 3}
+ m_Name: Bloom
+ m_EditorClassIdentifier:
+ active: 1
+ quality:
+ m_OverrideState: 1
+ m_Value: 1
+ threshold:
+ m_OverrideState: 0
+ m_Value: 0
+ intensity:
+ m_OverrideState: 1
+ m_Value: 0.2
+ scatter:
+ m_OverrideState: 0
+ m_Value: 0.7
+ tint:
+ m_OverrideState: 0
+ m_Value: {r: 1, g: 1, b: 1, a: 1}
+ dirtTexture:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ dirtIntensity:
+ m_OverrideState: 0
+ m_Value: 0
+ anamorphic:
+ m_OverrideState: 0
+ m_Value: 1
+ m_Resolution:
+ m_OverrideState: 1
+ m_Value: 2
+ m_HighQualityPrefiltering:
+ m_OverrideState: 1
+ m_Value: 0
+ m_HighQualityFiltering:
+ m_OverrideState: 1
+ m_Value: 1
+--- !u!114 &1932259527246508038
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 0d7593b3a9277ac4696b20006c21dde2, type: 3}
+ m_Name: VisualEnvironment
+ m_EditorClassIdentifier:
+ active: 1
+ skyType:
+ m_OverrideState: 1
+ m_Value: 1
+ cloudType:
+ m_OverrideState: 0
+ m_Value: 0
+ skyAmbientMode:
+ m_OverrideState: 0
+ m_Value: 0
+ planetRadius:
+ m_OverrideState: 0
+ m_Value: 6378.1
+ renderingSpace:
+ m_OverrideState: 0
+ m_Value: 1
+ centerMode:
+ m_OverrideState: 0
+ m_Value: 0
+ planetCenter:
+ m_OverrideState: 0
+ m_Value: {x: 0, y: -6378.1, z: 0}
+ windOrientation:
+ m_OverrideState: 0
+ m_Value: 0
+ windSpeed:
+ m_OverrideState: 0
+ m_Value: 100
+ fogType:
+ m_OverrideState: 0
+ m_Value: 0
+ m_Version: 1
+--- !u!114 &2097231660816403494
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: a76fd08475e21554b8f284f723dd7cf8, type: 3}
+ m_Name: WaterRendering
+ m_EditorClassIdentifier:
+ active: 1
+ enable:
+ m_OverrideState: 1
+ m_Value: 1
+ triangleSize:
+ m_OverrideState: 0
+ m_Value: 30
+ ambientProbeDimmer:
+ m_OverrideState: 0
+ m_Value: 0.5
+--- !u!114 &5315503232242033309
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2d08ce26990eb1a4a9177b860541e702, type: 3}
+ m_Name: Exposure
+ m_EditorClassIdentifier:
+ active: 1
+ mode:
+ m_OverrideState: 1
+ m_Value: 1
+ meteringMode:
+ m_OverrideState: 0
+ m_Value: 2
+ luminanceSource:
+ m_OverrideState: 0
+ m_Value: 1
+ fixedExposure:
+ m_OverrideState: 0
+ m_Value: 0
+ compensation:
+ m_OverrideState: 0
+ m_Value: 0
+ limitMin:
+ m_OverrideState: 0
+ m_Value: -10
+ limitMax:
+ m_OverrideState: 0
+ m_Value: 10
+ curveMap:
+ m_OverrideState: 0
+ m_Value:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: -10
+ value: -10
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 20
+ value: 20
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ limitMinCurveMap:
+ m_OverrideState: 0
+ m_Value:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: -10
+ value: -12
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 20
+ value: 18
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ limitMaxCurveMap:
+ m_OverrideState: 0
+ m_Value:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: -10
+ value: -8
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 20
+ value: 22
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ adaptationMode:
+ m_OverrideState: 0
+ m_Value: 1
+ adaptationSpeedDarkToLight:
+ m_OverrideState: 0
+ m_Value: 3
+ adaptationSpeedLightToDark:
+ m_OverrideState: 0
+ m_Value: 1
+ weightTextureMask:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ histogramPercentages:
+ m_OverrideState: 0
+ m_Value: {x: 40, y: 90}
+ histogramUseCurveRemapping:
+ m_OverrideState: 0
+ m_Value: 0
+ targetMidGray:
+ m_OverrideState: 0
+ m_Value: 0
+ centerAroundExposureTarget:
+ m_OverrideState: 0
+ m_Value: 0
+ proceduralCenter:
+ m_OverrideState: 0
+ m_Value: {x: 0.5, y: 0.5}
+ proceduralRadii:
+ m_OverrideState: 0
+ m_Value: {x: 0.3, y: 0.3}
+ maskMinIntensity:
+ m_OverrideState: 0
+ m_Value: -30
+ maskMaxIntensity:
+ m_OverrideState: 0
+ m_Value: 30
+ proceduralSoftness:
+ m_OverrideState: 0
+ m_Value: 0.5
+--- !u!114 &7502528774814404555
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 9008a067f4d626c4d8bc4bc48f04bb89, type: 3}
+ m_Name: AmbientOcclusion
+ m_EditorClassIdentifier:
+ active: 1
+ quality:
+ m_OverrideState: 0
+ m_Value: 1
+ rayTracing:
+ m_OverrideState: 0
+ m_Value: 0
+ intensity:
+ m_OverrideState: 1
+ m_Value: 0.5
+ directLightingStrength:
+ m_OverrideState: 0
+ m_Value: 0
+ radius:
+ m_OverrideState: 1
+ m_Value: 1.5
+ spatialBilateralAggressiveness:
+ m_OverrideState: 0
+ m_Value: 0.15
+ temporalAccumulation:
+ m_OverrideState: 0
+ m_Value: 1
+ ghostingReduction:
+ m_OverrideState: 0
+ m_Value: 0.5
+ blurSharpness:
+ m_OverrideState: 0
+ m_Value: 0.1
+ layerMask:
+ m_OverrideState: 0
+ m_Value:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ specularOcclusion:
+ m_OverrideState: 0
+ m_Value: 0.5
+ occluderMotionRejection:
+ m_OverrideState: 0
+ m_Value: 1
+ receiverMotionRejection:
+ m_OverrideState: 0
+ m_Value: 1
+ m_StepCount:
+ m_OverrideState: 0
+ m_Value: 6
+ m_FullResolution:
+ m_OverrideState: 0
+ m_Value: 0
+ m_MaximumRadiusInPixels:
+ m_OverrideState: 0
+ m_Value: 40
+ m_BilateralUpsample:
+ m_OverrideState: 0
+ m_Value: 1
+ m_DirectionCount:
+ m_OverrideState: 0
+ m_Value: 2
+ m_RayLength:
+ m_OverrideState: 0
+ m_Value: 3
+ m_SampleCount:
+ m_OverrideState: 0
+ m_Value: 2
+ m_Denoise:
+ m_OverrideState: 0
+ m_Value: 1
+ m_DenoiserRadius:
+ m_OverrideState: 0
+ m_Value: 0.5
+--- !u!114 &7542669330009093999
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: f086a068d4c5889438831b3ae9afc11c, type: 3}
+ m_Name: Tonemapping
+ m_EditorClassIdentifier:
+ active: 1
+ mode:
+ m_OverrideState: 1
+ m_Value: 2
+ useFullACES:
+ m_OverrideState: 0
+ m_Value: 0
+ toeStrength:
+ m_OverrideState: 0
+ m_Value: 0
+ toeLength:
+ m_OverrideState: 0
+ m_Value: 0.5
+ shoulderStrength:
+ m_OverrideState: 0
+ m_Value: 0
+ shoulderLength:
+ m_OverrideState: 0
+ m_Value: 0.5
+ shoulderAngle:
+ m_OverrideState: 0
+ m_Value: 0
+ gamma:
+ m_OverrideState: 0
+ m_Value: 1
+ lutTexture:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ lutContribution:
+ m_OverrideState: 0
+ m_Value: 1
+ neutralHDRRangeReductionMode:
+ m_OverrideState: 0
+ m_Value: 2
+ acesPreset:
+ m_OverrideState: 0
+ m_Value: 3
+ fallbackMode:
+ m_OverrideState: 0
+ m_Value: 1
+ hueShiftAmount:
+ m_OverrideState: 0
+ m_Value: 0
+ detectPaperWhite:
+ m_OverrideState: 0
+ m_Value: 0
+ paperWhite:
+ m_OverrideState: 0
+ m_Value: 300
+ detectBrightnessLimits:
+ m_OverrideState: 0
+ m_Value: 1
+ minNits:
+ m_OverrideState: 0
+ m_Value: 0.005
+ maxNits:
+ m_OverrideState: 0
+ m_Value: 1000
+--- !u!114 &7686318427622180703
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 7ddcec8a8eb2d684d833ac8f5d26aebd, type: 3}
+ m_Name: HDShadowSettings
+ m_EditorClassIdentifier:
+ active: 1
+ interCascadeBorders: 1
+ maxShadowDistance:
+ m_OverrideState: 1
+ m_Value: 150
+ directionalTransmissionMultiplier:
+ m_OverrideState: 0
+ m_Value: 1
+ cascadeShadowSplitCount:
+ m_OverrideState: 0
+ m_Value: 4
+ cascadeShadowSplit0:
+ m_OverrideState: 0
+ m_Value: 0.05
+ cascadeShadowSplit1:
+ m_OverrideState: 0
+ m_Value: 0.15
+ cascadeShadowSplit2:
+ m_OverrideState: 0
+ m_Value: 0.3
+ cascadeShadowBorder0:
+ m_OverrideState: 1
+ m_Value: 0.06905067
+ cascadeShadowBorder1:
+ m_OverrideState: 1
+ m_Value: 0.05086228
+ cascadeShadowBorder2:
+ m_OverrideState: 0
+ m_Value: 0
+ cascadeShadowBorder3:
+ m_OverrideState: 0
+ m_Value: 0
diff --git a/Assets/Settings/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta b/Assets/Settings/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta
new file mode 100644
index 0000000..18b5dba
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources/DefaultSettingsVolumeProfile.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 14b392ee213d25a48b1feddbd9f5a9be
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/HDRPDefaultResources/HDRenderPipelineAsset.asset b/Assets/Settings/HDRPDefaultResources/HDRenderPipelineAsset.asset
new file mode 100644
index 0000000..1663b45
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources/HDRenderPipelineAsset.asset
@@ -0,0 +1,550 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 0cf1dab834d4ec34195b920ea7bbf9ec, type: 3}
+ m_Name: HDRenderPipelineAsset
+ m_EditorClassIdentifier:
+ m_RenderPipelineSettings:
+ supportShadowMask: 1
+ supportSSR: 0
+ supportSSRTransparent: 0
+ supportSSAO: 1
+ supportSSGI: 0
+ supportSubsurfaceScattering: 1
+ subsurfaceScatteringAttenuation: 1
+ sssSampleBudget:
+ m_Values: 140000002800000050000000
+ m_SchemaId:
+ m_Id: With3Levels
+ sssDownsampleSteps:
+ m_Values: 000000000000000000000000
+ m_SchemaId:
+ m_Id: With3Levels
+ supportVolumetrics: 1
+ supportVolumetricClouds: 0
+ supportLightLayers: 0
+ renderingLayerMaskBuffer: 0
+ supportWater: 0
+ waterSimulationResolution: 128
+ supportWaterExclusion: 0
+ supportWaterHorizontalDeformation: 0
+ supportWaterDecals: 1
+ waterDecalAtlasSize: 1024
+ maximumWaterDecalCount: 48
+ waterScriptInteractionsMode: 0
+ waterFullCPUSimulation: 0
+ supportComputeThickness: 0
+ computeThicknessResolution: 1
+ computeThicknessLayerMask:
+ serializedVersion: 2
+ m_Bits: 0
+ supportDistortion: 1
+ supportTransparentBackface: 1
+ supportTransparentDepthPrepass: 1
+ supportTransparentDepthPostpass: 1
+ colorBufferFormat: 74
+ supportCustomPass: 1
+ supportVariableRateShading: 1
+ customBufferFormat: 12
+ supportedLitShaderMode: 2
+ planarReflectionResolution:
+ m_Values: 000100000004000000080000
+ m_SchemaId:
+ m_Id: With3Levels
+ cubeReflectionResolution:
+ m_Values: 000100000002000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ supportDecals: 1
+ supportDecalLayers: 0
+ supportSurfaceGradient: 0
+ decalNormalBufferHP: 0
+ supportHighQualityLineRendering: 0
+ highQualityLineRenderingMemoryBudget: 128
+ msaaSampleCount: 1
+ supportMotionVectors: 1
+ supportScreenSpaceLensFlare: 1
+ supportDataDrivenLensFlare: 1
+ supportDitheringCrossFade: 1
+ supportRuntimeAOVAPI: 0
+ supportTerrainHole: 0
+ lightProbeSystem: 0
+ oldLightProbeSystem: 0
+ probeVolumeMemoryBudget: 1024
+ supportProbeVolumeGPUStreaming: 0
+ supportProbeVolumeDiskStreaming: 0
+ probeVolumeSHBands: 1
+ supportProbeVolumeScenarios: 0
+ supportProbeVolumeScenarioBlending: 1
+ probeVolumeBlendingMemoryBudget: 128
+ supportRayTracing: 0
+ supportVFXRayTracing: 0
+ supportedRayTracingMode: 3
+ lightLoopSettings:
+ cookieAtlasSize: 2048
+ cookieFormat: 74
+ cookieAtlasLastValidMip: 0
+ cookieTexArraySize: 1
+ planarReflectionAtlasSize: 1024
+ reflectionProbeCacheSize: 64
+ reflectionCubemapSize: 256
+ maxEnvLightsOnScreen: 64
+ reflectionCacheCompressed: 0
+ reflectionProbeFormat: 74
+ reflectionProbeTexCacheSize: 1073750016
+ reflectionProbeTexLastValidCubeMip: 3
+ reflectionProbeTexLastValidPlanarMip: 0
+ reflectionProbeDecreaseResToFit: 1
+ skyReflectionSize: 256
+ skyLightingOverrideLayerMask:
+ serializedVersion: 2
+ m_Bits: 0
+ supportFabricConvolution: 0
+ maxDirectionalLightsOnScreen: 16
+ maxPunctualLightsOnScreen: 512
+ maxAreaLightsOnScreen: 64
+ maxCubeReflectionOnScreen: 48
+ maxPlanarReflectionOnScreen: 16
+ maxDecalsOnScreen: 512
+ maxLightsPerClusterCell: 8
+ maxLocalVolumetricFogSize: 32
+ maxLocalVolumetricFogOnScreen: 64
+ hdShadowInitParams:
+ maxShadowRequests: 128
+ directionalShadowsDepthBits: 32
+ punctualShadowFilteringQuality: 1
+ directionalShadowFilteringQuality: 1
+ areaShadowFilteringQuality: 0
+ punctualLightShadowAtlas:
+ shadowAtlasResolution: 4096
+ shadowAtlasDepthBits: 32
+ useDynamicViewportRescale: 1
+ areaLightShadowAtlas:
+ shadowAtlasResolution: 4096
+ shadowAtlasDepthBits: 32
+ useDynamicViewportRescale: 1
+ cachedPunctualLightShadowAtlas: 2048
+ cachedAreaLightShadowAtlas: 1024
+ allowDirectionalMixedCachedShadows: 0
+ shadowResolutionDirectional:
+ m_Values: 00010000000200000004000000080000
+ m_SchemaId:
+ m_Id: With4Levels
+ shadowResolutionPunctual:
+ m_Values: 00010000000200000004000000080000
+ m_SchemaId:
+ m_Id: With4Levels
+ shadowResolutionArea:
+ m_Values: 00010000000200000004000000080000
+ m_SchemaId:
+ m_Id: With4Levels
+ maxDirectionalShadowMapResolution: 2048
+ maxPunctualShadowMapResolution: 2048
+ maxAreaShadowMapResolution: 2048
+ supportScreenSpaceShadows: 0
+ maxScreenSpaceShadowSlots: 4
+ screenSpaceShadowBufferFormat: 48
+ decalSettings:
+ drawDistance: 1000
+ atlasWidth: 4096
+ atlasHeight: 4096
+ transparentTextureResolution:
+ m_Values: 000100000002000000040000
+ m_SchemaId:
+ m_Id: With3Levels
+ perChannelMask: 0
+ postProcessSettings:
+ m_LutSize: 32
+ lutFormat: 48
+ bufferFormat: 74
+ dynamicResolutionSettings:
+ enabled: 0
+ useMipBias: 0
+ advancedUpscalersByPriority:
+ DLSSPerfQualitySetting: 0
+ DLSSInjectionPoint: 0
+ TAAUInjectionPoint: 0
+ STPInjectionPoint: 0
+ defaultInjectionPoint: 2
+ DLSSUseOptimalSettings: 0
+ DLSSSharpness: 0
+ FSR2EnableSharpness: 0
+ FSR2Sharpness: 0
+ FSR2UseOptimalSettings: 0
+ FSR2QualitySetting: 0
+ FSR2InjectionPoint: 0
+ fsrOverrideSharpness: 0
+ fsrSharpness: 0.92
+ maxPercentage: 100
+ minPercentage: 100
+ dynResType: 1
+ upsampleFilter: 1
+ forceResolution: 0
+ forcedPercentage: 100
+ lowResTransparencyMinimumThreshold: 0
+ rayTracingHalfResThreshold: 50
+ lowResSSGIMinimumThreshold: 0
+ lowResVolumetricCloudsMinimumThreshold: 50
+ enableDLSS: 0
+ lowresTransparentSettings:
+ enabled: 1
+ checkerboardDepthBuffer: 1
+ upsampleType: 1
+ xrSettings:
+ singlePass: 1
+ occlusionMesh: 1
+ cameraJitter: 0
+ allowMotionBlur: 0
+ postProcessQualitySettings:
+ NearBlurSampleCount: 030000000500000008000000
+ NearBlurMaxRadius:
+ - 2
+ - 4
+ - 7
+ FarBlurSampleCount: 04000000070000000e000000
+ FarBlurMaxRadius:
+ - 5
+ - 8
+ - 13
+ DoFResolution: 040000000200000001000000
+ DoFHighQualityFiltering: 000101
+ DoFPhysicallyBased: 000000
+ AdaptiveSamplingWeight:
+ - 0.5
+ - 0.75
+ - 2
+ LimitManualRangeNearBlur: 000000
+ MotionBlurSampleCount: 04000000080000000c000000
+ BloomRes: 040000000200000002000000
+ BloomHighQualityFiltering: 000101
+ BloomHighQualityPrefiltering: 000001
+ ChromaticAberrationMaxSamples: 03000000060000000c000000
+ lightSettings:
+ useContactShadow:
+ m_Values: 000001
+ m_SchemaId:
+ m_Id: With3Levels
+ maximumLODLevel:
+ m_Values: 000000000000000000000000
+ m_SchemaId:
+ m_Id: With3Levels
+ lodBias:
+ m_Values:
+ - 1
+ - 1
+ - 1
+ m_SchemaId:
+ m_Id: With3Levels
+ lightingQualitySettings:
+ AOStepCount: 040000000600000010000000
+ AOFullRes: 000001
+ AOMaximumRadiusPixels: 200000002800000050000000
+ AOBilateralUpsample: 000101
+ AODirectionCount: 010000000200000004000000
+ ContactShadowSampleCount: 060000000a00000010000000
+ SSRMaxRaySteps: 100000002000000040000000
+ SSGIRaySteps: 200000004000000080000000
+ SSGIDenoise: 010101
+ SSGIHalfResDenoise: 010000
+ SSGIDenoiserRadius:
+ - 0.75
+ - 0.5
+ - 0.5
+ SSGISecondDenoise: 010101
+ RTAORayLength:
+ - 0.5
+ - 3
+ - 20
+ RTAOSampleCount: 010000000200000008000000
+ RTAODenoise: 010101
+ RTAODenoiserRadius:
+ - 0.25
+ - 0.5
+ - 0.65
+ RTGIRayLength:
+ - 50
+ - 50
+ - 50
+ RTGIFullResolution: 000001
+ RTGIRaySteps: 200000003000000040000000
+ RTGIDenoise: 010101
+ RTGIHalfResDenoise: 010000
+ RTGIDenoiserRadius:
+ - 0.75
+ - 0.5
+ - 0.25
+ RTGISecondDenoise: 010101
+ RTRMinSmoothness:
+ - 0.6
+ - 0.4
+ - 0
+ RTRSmoothnessFadeStart:
+ - 0.7
+ - 0.5
+ - 0
+ RTRRayLength:
+ - 50
+ - 50
+ - 50
+ RTRFullResolution: 000001
+ RTRRayMaxIterations: 200000003000000040000000
+ RTRDenoise: 010101
+ RTRDenoiserRadiusDimmer:
+ - 0.75
+ - 0.75
+ - 1
+ RTRDenoiserAntiFlicker:
+ - 1
+ - 1
+ - 1
+ Fog_ControlMode: 000000000000000000000000
+ Fog_Budget:
+ - 0.166
+ - 0.33
+ - 0.666
+ Fog_DepthRatio:
+ - 0.666
+ - 0.666
+ - 0.5
+ gpuResidentDrawerSettings:
+ mode: 0
+ smallMeshScreenPercentage: 0
+ enableOcclusionCullingInCameras: 0
+ useDepthPrepassForOccluders: 1
+ m_ObsoleteLightLayerName0:
+ m_ObsoleteLightLayerName1:
+ m_ObsoleteLightLayerName2:
+ m_ObsoleteLightLayerName3:
+ m_ObsoleteLightLayerName4:
+ m_ObsoleteLightLayerName5:
+ m_ObsoleteLightLayerName6:
+ m_ObsoleteLightLayerName7:
+ m_ObsoleteDecalLayerName0:
+ m_ObsoleteDecalLayerName1:
+ m_ObsoleteDecalLayerName2:
+ m_ObsoleteDecalLayerName3:
+ m_ObsoleteDecalLayerName4:
+ m_ObsoleteDecalLayerName5:
+ m_ObsoleteDecalLayerName6:
+ m_ObsoleteDecalLayerName7:
+ m_ObsoleteSupportRuntimeDebugDisplay: 0
+ allowShaderVariantStripping: 1
+ enableSRPBatcher: 1
+ availableMaterialQualityLevels: -1
+ m_DefaultMaterialQualityLevel: 4
+ diffusionProfileSettings: {fileID: 0}
+ m_VolumeProfile: {fileID: 0}
+ virtualTexturingSettings:
+ streamingCpuCacheSizeInMegaBytes: 256
+ streamingMipPreloadTexturesPerFrame: 0
+ streamingPreloadMipCount: 1
+ streamingGpuCacheSettings:
+ - format: 0
+ sizeInMegaBytes: 128
+ m_UseRenderGraph: 1
+ m_CompositorCustomVolumeComponentsList:
+ m_InjectionPoint: 1
+ m_CustomPostProcessTypesAsString: []
+ m_Version: 25
+ m_ObsoleteFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteBakedOrCustomReflectionFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteRealtimeReflectionFrameSettings:
+ overrides: 0
+ enableShadow: 0
+ enableContactShadows: 0
+ enableShadowMask: 0
+ enableSSR: 0
+ enableSSAO: 0
+ enableSubsurfaceScattering: 0
+ enableTransmission: 0
+ enableAtmosphericScattering: 0
+ enableVolumetrics: 0
+ enableReprojectionForVolumetrics: 0
+ enableLightLayers: 0
+ enableExposureControl: 1
+ diffuseGlobalDimmer: 0
+ specularGlobalDimmer: 0
+ shaderLitMode: 0
+ enableDepthPrepassWithDeferredRendering: 0
+ enableTransparentPrepass: 0
+ enableMotionVectors: 0
+ enableObjectMotionVectors: 0
+ enableDecals: 0
+ enableRoughRefraction: 0
+ enableTransparentPostpass: 0
+ enableDistortion: 0
+ enablePostprocess: 0
+ enableOpaqueObjects: 0
+ enableTransparentObjects: 0
+ enableRealtimePlanarReflection: 0
+ enableMSAA: 0
+ enableAsyncCompute: 0
+ runLightListAsync: 0
+ runSSRAsync: 0
+ runSSAOAsync: 0
+ runContactShadowsAsync: 0
+ runVolumeVoxelizationAsync: 0
+ lightLoopSettings:
+ overrides: 0
+ enableDeferredTileAndCluster: 0
+ enableComputeLightEvaluation: 0
+ enableComputeLightVariants: 0
+ enableComputeMaterialVariants: 0
+ enableFptlForForwardOpaque: 0
+ enableBigTilePrepass: 0
+ isFptlEnabled: 0
+ m_ObsoleteDefaultVolumeProfile: {fileID: 0}
+ m_ObsoleteDefaultLookDevProfile: {fileID: 0}
+ m_ObsoleteFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 0
+ data2: 0
+ lodBias: 0
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 0
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteBakedOrCustomReflectionFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 0
+ data2: 0
+ lodBias: 0
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 0
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteRealtimeReflectionFrameSettingsMovedToDefaultSettings:
+ bitDatas:
+ data1: 0
+ data2: 0
+ lodBias: 0
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 0
+ sssCustomDownsampleSteps: 0
+ msaaMode: 0
+ materialQuality: 0
+ m_ObsoleteBeforeTransparentCustomPostProcesses: []
+ m_ObsoleteBeforePostProcessCustomPostProcesses: []
+ m_ObsoleteAfterPostProcessCustomPostProcesses: []
+ m_ObsoleteBeforeTAACustomPostProcesses: []
+ m_ObsoleteShaderVariantLogLevel: 0
+ m_ObsoleteLensAttenuation: 0
+ m_ObsoleteDiffusionProfileSettingsList: []
+ m_PrefilterUseLegacyLightmaps: 0
+ m_PrefilterUseLightmapBicubicSampling: 0
diff --git a/Assets/Settings/HDRPDefaultResources/HDRenderPipelineAsset.asset.meta b/Assets/Settings/HDRPDefaultResources/HDRenderPipelineAsset.asset.meta
new file mode 100644
index 0000000..2b1a38d
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources/HDRenderPipelineAsset.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: b9f3086da92434da0bc1518f19f0ce86
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset b/Assets/Settings/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset
new file mode 100644
index 0000000..231c645
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset
@@ -0,0 +1,880 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 781cc897cf8675041a751163b51f97dd, type: 3}
+ m_Name: HDRenderPipelineGlobalSettings
+ m_EditorClassIdentifier:
+ m_CustomPostProcessOrdersSettings:
+ m_Version: 0
+ m_BeforeTransparentCustomPostProcesses:
+ m_InjectionPoint: 0
+ m_CustomPostProcessTypesAsString: []
+ m_BeforeTAACustomPostProcesses:
+ m_InjectionPoint: 3
+ m_CustomPostProcessTypesAsString: []
+ m_BeforePostProcessCustomPostProcesses:
+ m_InjectionPoint: 1
+ m_CustomPostProcessTypesAsString: []
+ m_AfterPostProcessBlursCustomPostProcesses:
+ m_InjectionPoint: 4
+ m_CustomPostProcessTypesAsString: []
+ m_AfterPostProcessCustomPostProcesses:
+ m_InjectionPoint: 2
+ m_CustomPostProcessTypesAsString: []
+ beforeTransparentCustomPostProcesses: []
+ beforePostProcessCustomPostProcesses: []
+ afterPostProcessBlursCustomPostProcesses: []
+ afterPostProcessCustomPostProcesses: []
+ beforeTAACustomPostProcesses: []
+ m_ShaderStrippingSetting:
+ m_Version: 0
+ m_ExportShaderVariants: 1
+ m_ShaderVariantLogLevel: 0
+ m_StripRuntimeDebugShaders: 0
+ m_ShaderVariantLogLevel: 0
+ m_SupportRuntimeDebugDisplay: 0
+ m_ExportShaderVariants: 1
+ m_StripDebugVariants: 0
+ DLSSProjectId: 000000
+ useDLSSCustomProjectId: 0
+ supportProbeVolumes: 0
+ autoRegisterDiffusionProfiles: 0
+ analyticDerivativeEmulation: 0
+ analyticDerivativeDebugOutput: 0
+ lensAttenuationMode: 0
+ colorGradingSpace: 0
+ m_ObsoleteDiffusionProfileSettingsList:
+ - {fileID: 11400000, guid: 48e911a1e337b44e2b85dbc65b47a594, type: 2}
+ - {fileID: 11400000, guid: 879ffae44eefa4412bb327928f1a96dd, type: 2}
+ specularFade: 0
+ rendererListCulling: 0
+ m_ObsoleteDefaultVolumeProfile: {fileID: 0}
+ m_ObsoleteLookDevVolumeProfile: {fileID: 0}
+ m_ObsoleteRenderingPathDefaultCameraFrameSettings:
+ bitDatas:
+ data1: 72198260625768269
+ data2: 13799031439032811544
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ m_ObsoleteRenderingPathDefaultBakedOrCustomReflectionFrameSettings:
+ bitDatas:
+ data1: 135310754214733
+ data2: 4539628428684460056
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ m_ObsoleteRenderingPathDefaultRealtimeReflectionFrameSettings:
+ bitDatas:
+ data1: 139923391782733
+ data2: 13763000465807638544
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ m_ObsoleteRenderingPath:
+ m_Version: 0
+ m_Camera:
+ bitDatas:
+ data1: 72198260625768269
+ data2: 13799031439032811544
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ m_CustomOrBakedReflection:
+ bitDatas:
+ data1: 135310754214733
+ data2: 4539628428684460056
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ m_RealtimeReflection:
+ bitDatas:
+ data1: 139923391782733
+ data2: 13763000465807638544
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ m_Settings:
+ m_SettingsList:
+ m_List:
+ - rid: 8556427327610290176
+ - rid: 8556427327610290177
+ - rid: 8556427327610290178
+ - rid: 8556427327610290179
+ - rid: 8556427327610290180
+ - rid: 8556427327610290181
+ - rid: 8556427327610290182
+ - rid: 8556427327610290183
+ - rid: 5137683131079852032
+ - rid: 5137683131079852033
+ - rid: 5137683131079852034
+ - rid: 5137683131079852035
+ - rid: 5137683131079852036
+ - rid: 5137683131079852037
+ - rid: 5137683131079852038
+ - rid: 5137683131079852039
+ - rid: 5137683131079852040
+ - rid: 5137683131079852041
+ - rid: 5137683131079852042
+ - rid: 5137683131079852043
+ - rid: 5137683131079852044
+ - rid: 5137683131079852045
+ - rid: 5137683131079852046
+ - rid: 5137683131079852047
+ - rid: 5137683131079852048
+ - rid: 5137683131079852049
+ - rid: 5137683131079852050
+ - rid: 5137683131079852051
+ - rid: 5137683131079852052
+ - rid: 5137683131079852053
+ - rid: 5137683131079852054
+ - rid: 5137683131079852055
+ - rid: 5137683131079852056
+ - rid: 5137683131079852057
+ - rid: 5137683131079852058
+ - rid: 5137683131079852059
+ m_RuntimeSettings:
+ m_List: []
+ renderingLayerNames:
+ - Light Layer default
+ - Light Layer 1
+ - Light Layer 2
+ - Light Layer 3
+ - Light Layer 4
+ - Light Layer 5
+ - Light Layer 6
+ - Light Layer 7
+ - Decal Layer default
+ - Decal Layer 1
+ - Decal Layer 2
+ - Decal Layer 3
+ - Decal Layer 4
+ - Decal Layer 5
+ - Decal Layer 6
+ - Decal Layer 7
+ lightLayerName0: Light Layer default
+ lightLayerName1: Light Layer 1
+ lightLayerName2: Light Layer 2
+ lightLayerName3: Light Layer 3
+ lightLayerName4: Light Layer 4
+ lightLayerName5: Light Layer 5
+ lightLayerName6: Light Layer 6
+ lightLayerName7: Light Layer 7
+ decalLayerName0: Decal Layer default
+ decalLayerName1: Decal Layer 1
+ decalLayerName2: Decal Layer 2
+ decalLayerName3: Decal Layer 3
+ decalLayerName4: Decal Layer 4
+ decalLayerName5: Decal Layer 5
+ decalLayerName6: Decal Layer 6
+ decalLayerName7: Decal Layer 7
+ apvScenesData:
+ obsoleteSceneBounds:
+ m_Keys: []
+ m_Values: []
+ obsoleteHasProbeVolumes:
+ m_Keys: []
+ m_Values:
+ m_Version: 14
+ references:
+ version: 2
+ RefIds:
+ - rid: 5137683131079852032
+ type: {class: HDRPDefaultVolumeProfileSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_VolumeProfile: {fileID: 11400000, guid: 14b392ee213d25a48b1feddbd9f5a9be, type: 2}
+ - rid: 5137683131079852033
+ type: {class: VolumetricCloudsRuntimeResources, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_VolumetricCloudsCS: {fileID: 7200000, guid: f911a8577fa9a4546a6b255bcf888baf, type: 3}
+ m_VolumetricCloudsTraceCS: {fileID: 7200000, guid: 66eaa9becc91a8646a88c15375af8b86, type: 3}
+ m_VolumetricCloudsTraceShadowsCS: {fileID: 7200000, guid: f350c5c3b41fd1b408aac9076f96610e, type: 3}
+ m_VolumetricCloudsShadowFilterCS: {fileID: 7200000, guid: 771ea9a52996c024095906ac37a8a71f, type: 3}
+ m_VolumetricCloudMapGeneratorCS: {fileID: 7200000, guid: 6b22771f0aa98744cb09f455a5a818cb, type: 3}
+ m_VolumetricCloudsCombinePS: {fileID: 4800000, guid: 12f1a69ddf916f042ae6ce8a994506f3, type: 3}
+ m_CloudLutRainAO: {fileID: 2800000, guid: e0bcfddf26ed5584ba3d8b94d3200114, type: 3}
+ m_WorleyNoise128RGBA: {fileID: 11700000, guid: 1fe54a721d0e2504e89f121c723404a8, type: 3}
+ m_WorleyNoise32RGB: {fileID: 11700000, guid: ec156c314a242914dbb706f73ad78cf2, type: 3}
+ m_PerlinNoise32RGB: {fileID: 11700000, guid: d1aae012f8a4f23478471851f17ff915, type: 3}
+ - rid: 5137683131079852034
+ type: {class: LookDevVolumeProfileSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_VolumeProfile: {fileID: 11400000, guid: 4594f4a3fb14247e192bcca6dc23c8ed, type: 2}
+ - rid: 5137683131079852035
+ type: {class: DiffusionProfileDefaultSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_AutoRegisterDiffusionProfiles: 0
+ - rid: 5137683131079852036
+ type: {class: AnalyticDerivativeSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_AnalyticDerivativeEmulation: 0
+ m_AnalyticDerivativeDebugOutput: 0
+ - rid: 5137683131079852037
+ type: {class: RenderGraphSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_DynamicRenderPassCulling: 0
+ - rid: 5137683131079852038
+ type: {class: SpecularFadeSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_SpecularFade: 0
+ - rid: 5137683131079852039
+ type: {class: ColorGradingSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_ColorGradingSpace: 0
+ - rid: 5137683131079852040
+ type: {class: LensSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_LensAttenuationMode: 0
+ - rid: 5137683131079852041
+ type: {class: WaterSystemGlobalSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 1
+ m_EnableMaskAndCurrentWaterDecals: 0
+ - rid: 5137683131079852042
+ type: {class: CustomPostProcessOrdersSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_BeforeTransparentCustomPostProcesses:
+ m_InjectionPoint: 0
+ m_CustomPostProcessTypesAsString: []
+ m_BeforeTAACustomPostProcesses:
+ m_InjectionPoint: 3
+ m_CustomPostProcessTypesAsString: []
+ m_BeforePostProcessCustomPostProcesses:
+ m_InjectionPoint: 1
+ m_CustomPostProcessTypesAsString: []
+ m_AfterPostProcessBlursCustomPostProcesses:
+ m_InjectionPoint: 4
+ m_CustomPostProcessTypesAsString: []
+ m_AfterPostProcessCustomPostProcesses:
+ m_InjectionPoint: 2
+ m_CustomPostProcessTypesAsString: []
+ - rid: 5137683131079852043
+ type: {class: WaterSystemRuntimeResources, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_WaterMaterial: {fileID: -876546973899608171, guid: 3fda5e465882bec4d8e64161b681806c, type: 3}
+ m_WaterExclusionMaterial: {fileID: 2100000, guid: 1e520c84f7fd17c46af5586f6632155c, type: 2}
+ m_WaterDecalMaterial: {fileID: -876546973899608171, guid: 7e2c0d424490bfc4698c37245b8c63ed, type: 3}
+ m_WaterSimulationCS: {fileID: 7200000, guid: 32ac7f445960a854595586a600c24034, type: 3}
+ m_FourierTransformCS: {fileID: 7200000, guid: bc2ee21836a0b5147900ef35a6e1f508, type: 3}
+ m_WaterEvaluationCS: {fileID: 7200000, guid: c24e765a2bbaace4d9a0ecec600e1967, type: 3}
+ m_WaterPS: {fileID: -6465566751694194690, guid: 3fda5e465882bec4d8e64161b681806c, type: 3}
+ m_WaterLightingCS: {fileID: 7200000, guid: 05d00ad19f202ee4891fdaa90d6d1b23, type: 3}
+ m_WaterLineCS: {fileID: 7200000, guid: 1e7e38362b5026d44ab4f3ff4a612026, type: 3}
+ m_WaterCausticsPS: {fileID: 4800000, guid: 020d64d10886f754e91664d240248c13, type: 3}
+ m_WaterDecalPS: {fileID: 4800000, guid: cf863cbd7bbd44a43b414caed214ba29, type: 3}
+ m_WaterDeformationCS: {fileID: 7200000, guid: 9b8063fa5834d4243bfca8c68a92d9f1, type: 3}
+ m_WaterFoamCS: {fileID: 7200000, guid: 0d16d14b783e65f4d81dbcece2bd0ef9, type: 3}
+ m_WaterDecalMigrationShader: {fileID: -6465566751694194690, guid: 9f1661ed5b4d6ee4685ad5683b09a903, type: 3}
+ m_FoamMask: {fileID: 2800000, guid: ca1d72d84c34dba4390eab4c86e62f62, type: 3}
+ - rid: 5137683131079852044
+ type: {class: HDRenderPipelineEditorAssets, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_DefaultSettingsVolumeProfile: {fileID: 11400000, guid: f940a8037e6cda542891dc1aac1fa4e8, type: 2}
+ m_LookDevDefaultLookDevVolumeProfile: {fileID: 11400000, guid: 254c4fe87beb7be4fa72e1681edbed02, type: 2}
+ m_DefaultDiffusionProfileSettingsList:
+ - {fileID: 11400000, guid: 404820c4cf36ad944862fa59c56064f0, type: 2}
+ - {fileID: 11400000, guid: 2384dbf2c1c420f45a792fbc315fbfb1, type: 2}
+ - rid: 5137683131079852045
+ type: {class: HDRenderPipelineRuntimeShaders, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_DefaultShader: {fileID: 4800000, guid: 6e4ae4064600d784cac1e41a9e6f2e59, type: 3}
+ m_CameraMotionVectorsPS: {fileID: 4800000, guid: 035941b63024d1943af48811c1db20d9, type: 3}
+ m_ColorPyramidPS: {fileID: 4800000, guid: 2fcfb8d92f45e4549b3f0bad5d0654bf, type: 3}
+ m_ColorPyramidCS: {fileID: 7200000, guid: 4e3267a1135742441a14298d8dcac04a, type: 3}
+ m_DepthPyramidCS: {fileID: 7200000, guid: 64a553bb564274041906f78ffba955e4, type: 3}
+ m_MaxZCS: {fileID: 7200000, guid: e95abf8c7230c344595f41c4dd5ff517, type: 3}
+ m_ApplyDistortionPS: {fileID: 4800000, guid: 02ae56f4306413c4a96dcf005cde1971, type: 3}
+ m_CustomPassUtils: {fileID: 4800000, guid: 7e3722d0388000848acb25fd3cc8c088, type: 3}
+ m_CustomPassRenderersUtils: {fileID: 4800000, guid: cef5ba33ee5063d4c8b495d2292e394d, type: 3}
+ m_ClearStencilBufferPS: {fileID: 4800000, guid: 8ea49ef16606acd489439e676ab84040, type: 3}
+ m_CopyStencilBufferPS: {fileID: 4800000, guid: 3d1574f1cdfa0ce4995f9bc79ed7f8ec, type: 3}
+ m_CopyDepthBufferPS: {fileID: 4800000, guid: 42dfcc8fe803ece4096c58630689982f, type: 3}
+ m_BlitPS: {fileID: 4800000, guid: e22fc1942c664490980b8793dd4a163d, type: 3}
+ m_BlitColorAndDepthPS: {fileID: 4800000, guid: b22ad378c678348729d3a3f981b9f270, type: 3}
+ m_DownsampleDepthPS: {fileID: 4800000, guid: 67d6171b0acc6554aad48c845ec7e67f, type: 3}
+ m_UpsampleTransparentPS: {fileID: 4800000, guid: 2ad7ce40f0dbaf64dadef1f58d8524d3, type: 3}
+ m_ResolveStencilCS: {fileID: 7200000, guid: 65b89cac5f286b043a31bf8041776ee7, type: 3}
+ m_DebugDisplayLatlongPS: {fileID: 4800000, guid: c1d1d149a043a5349ba367da6c2051ba, type: 3}
+ m_DebugViewMaterialGBufferPS: {fileID: 4800000, guid: 439949ea1bfa91b4ba0d04269fcde33d, type: 3}
+ m_DebugViewTilesPS: {fileID: 4800000, guid: c7c2bd17b06ceb4468e14081aaf1b96f, type: 3}
+ m_DebugFullScreenPS: {fileID: 4800000, guid: e874aca2df8300a488258738c31f85cf, type: 3}
+ m_DebugColorPickerPS: {fileID: 4800000, guid: 8137b807709e178498f22ed710864bb0, type: 3}
+ m_DebugExposurePS: {fileID: 4800000, guid: 0ef322534f047a34c96d29419d56d17a, type: 3}
+ m_DebugHDRPS: {fileID: 4800000, guid: 9bc5229549892084da43ad706d84f1bc, type: 3}
+ m_DebugLightVolumePS: {fileID: 4800000, guid: 8e706c0e71fcec34a8f5c9713e5e2943, type: 3}
+ m_DebugLightVolumeCS: {fileID: 7200000, guid: f5d5d21faef5cf445ac2c5d8ff9c4184, type: 3}
+ m_DebugBlitQuad: {fileID: 4800000, guid: cf5ca5b6ef18b3f429ed707ee9ceac9f, type: 3}
+ m_DebugViewVirtualTexturingBlit: {fileID: 4800000, guid: 55d195396b03b804eb78c92d468e3c8e, type: 3}
+ m_MaterialError: {fileID: 4800000, guid: 79a966a5200a456188dec0d48d805614, type: 3}
+ m_MaterialLoading: {fileID: 4800000, guid: 392325671f122f540be9033ca5ae7a56, type: 3}
+ m_ClearDebugBufferCS: {fileID: 7200000, guid: 7fc6041d5cf70004aa33bb1ac64e3c06, type: 3}
+ m_DebugWaveformPS: {fileID: 4800000, guid: 0024f9d09a828734192f3e1cd5931745, type: 3}
+ m_DebugWaveformCS: {fileID: 7200000, guid: 62b785f79355903428a21d5d8f8aeabe, type: 3}
+ m_DebugVectorscopePS: {fileID: 4800000, guid: 7a09af24008164d40ae85ccd6bf87e17, type: 3}
+ m_DebugVectorscopeCS: {fileID: 7200000, guid: 6a70efb18a2b2964c8eb0fc04aba20e9, type: 3}
+ m_DebugImageHistogramCS: {fileID: 7200000, guid: 52cc17ef5a5ffc443a5c142f9b745a85, type: 3}
+ m_DebugHDRxyMappingCS: {fileID: 7200000, guid: f055d2983d992b64494f1a03fc725cde, type: 3}
+ m_ProbeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 22de19bc461f84742857dd64c56b0397, type: 3}
+ m_PlanarReflectionFilteringCS: {fileID: 7200000, guid: 9f3f8a01b8caaaa4595591dc96d43dd2, type: 3}
+ m_ScreenSpaceGlobalIlluminationCS: {fileID: 7200000, guid: 96170a954eb538b40a5ff369552c3629, type: 3}
+ m_ScreenSpaceReflectionsCS: {fileID: 7200000, guid: d1de9ac7d9016204da289affe9677942, type: 3}
+ m_ClearDispatchIndirectCS: {fileID: 7200000, guid: fc1f553acb80a6446a32d33e403d0656, type: 3}
+ m_ClearLightListsCS: {fileID: 7200000, guid: 743eb3491795b9545955695d591195a1, type: 3}
+ m_BuildDispatchIndirectCS: {fileID: 7200000, guid: 4eb1b418be7044c40bb5200496c50f14, type: 3}
+ m_BuildScreenAABBCS: {fileID: 7200000, guid: 728dce960f8a9c44bbc3abb3b851d8f6, type: 3}
+ m_BuildPerTileLightListCS: {fileID: 7200000, guid: 65af3444cbf4b3747a4dead7ee00cfee, type: 3}
+ m_BuildPerBigTileLightListCS: {fileID: 7200000, guid: 5ee1f9d6e09abe045b2f5e0b784b9072, type: 3}
+ m_BuildPerVoxelLightListCS: {fileID: 7200000, guid: 0bb1b7e0ddcd5c44baf3ddc7456eb196, type: 3}
+ m_LightListClusterClearAtomicIndexCS: {fileID: 7200000, guid: 1e3472a94b14a334a93230bbc700d7b2, type: 3}
+ m_BuildMaterialFlagsCS: {fileID: 7200000, guid: fb3eda953cd6e634e877fb777be2cd08, type: 3}
+ m_DeferredCS: {fileID: 7200000, guid: 0b64f79746d2daf4198eaf6eab9af259, type: 3}
+ m_VolumeVoxelizationCS: {fileID: 7200000, guid: c20b371db720da244b73830ec74a343a, type: 3}
+ m_VolumetricLightingCS: {fileID: 7200000, guid: b4901a10df2d1e24282725e9fbc77c97, type: 3}
+ m_VolumetricLightingFilteringCS: {fileID: 7200000, guid: ef9a910d0ec6ebb41ae3f5c7a69daf46, type: 3}
+ m_DefaultFogVolumeShader: {fileID: -6465566751694194690, guid: 95060fe3e070428418e64e6bed27b111, type: 3}
+ m_ScreenSpaceMultipleScatteringCS: {fileID: 7200000, guid: 29c79555731a206478f0ea448352340c, type: 3}
+ m_SubsurfaceScatteringCS: {fileID: 7200000, guid: b06a7993621def248addd55d0fe931b1, type: 3}
+ m_SubsurfaceScatteringDownsampleCS: {fileID: 7200000, guid: 4f8aaf0160a259e499fdfac512ca2692, type: 3}
+ m_CombineLightingPS: {fileID: 4800000, guid: 2e37131331fbdca449b1a2bc47a639ca, type: 3}
+ m_BlitCubemapPS: {fileID: 4800000, guid: d05913e251bed7a4992c921c62e1b647, type: 3}
+ m_OpaqueAtmosphericScatteringPS: {fileID: 4800000, guid: 32f724728cf19904291226f239ec16f0, type: 3}
+ m_HdriSkyPS: {fileID: 4800000, guid: 9bd32a6ece529fd4f9408b8d7e00c10d, type: 3}
+ m_IntegrateHdriSkyPS: {fileID: 4800000, guid: 48db2705cf2856d4e893eb30a6892d1b, type: 3}
+ m_SkyboxCubemapPS: {fileID: 103, guid: 0000000000000000f000000000000000, type: 0}
+ m_GradientSkyPS: {fileID: 4800000, guid: 2b5d4f1b26f03dc4a873b093e0c4adb1, type: 3}
+ m_AmbientProbeConvolutionCS: {fileID: 7200000, guid: 6d048f7b1bd45e840b4e79ec92639fa8, type: 3}
+ m_GroundIrradiancePrecomputationCS: {fileID: 7200000, guid: eb6ae6f326207ee4d987a3e5adddf63a, type: 3}
+ m_InScatteredRadiancePrecomputationCS: {fileID: 7200000, guid: 70c69d514688f8545855680760d77418, type: 3}
+ m_PhysicallyBasedSkyPS: {fileID: 4800000, guid: a06934a4863e778498be65d8f865b7a4, type: 3}
+ m_CloudLayerPS: {fileID: 4800000, guid: 001a47fa123e95a4bba13ecb0442d944, type: 3}
+ m_BakeCloudTextureCS: {fileID: 7200000, guid: 09a7f6850ee9fb4439e5ebd632127da5, type: 3}
+ m_BakeCloudShadowsCS: {fileID: 7200000, guid: 3e7317e0800c066448ee07a3e47f102b, type: 3}
+ m_SkyLUTGenerator: {fileID: 7200000, guid: 79224112d91b32241be6b65802863db4, type: 3}
+ m_LineStagePrepareCS: {fileID: 7200000, guid: 53231d98bbe64477aacc1adc14ba2619, type: 3}
+ m_LineStageSetupSegmentCS: {fileID: 7200000, guid: 028836c66d494d8d94e1b2ca7d5382ae, type: 3}
+ m_LineStageShadingSetupCS: {fileID: 7200000, guid: fefde0fac988da24a93bc2d8d6e0a0a1, type: 3}
+ m_LineStageRasterBinCS: {fileID: 7200000, guid: 17d1e3e43f0e4c878b40b52848a58a77, type: 3}
+ m_LineStageWorkQueueCS: {fileID: 7200000, guid: dae4ea8aeff24b16be3f0b2948e0acc5, type: 3}
+ m_LineStageRasterFineCS: {fileID: 7200000, guid: 8691ac13e67d457abb92eca75e88e995, type: 3}
+ m_LineCompositePS: {fileID: 4800000, guid: 8d9fbe0862434a2298748d335b9abea5, type: 3}
+ m_PreIntegratedFGD_GGXDisneyDiffusePS: {fileID: 4800000, guid: 123f13d52852ef547b2962de4bd9eaad, type: 3}
+ m_PreIntegratedFGD_CharlieFabricLambertPS: {fileID: 4800000, guid: 3b3bf235775cf8b4baae7f3306787ab0, type: 3}
+ m_PreIntegratedFGD_WardPS: {fileID: 4800000, guid: d279c46a545b0af4f9f0c4fa82cd489e, type: 3}
+ m_PreIntegratedFGD_CookTorrancePS: {fileID: 4800000, guid: a6402c19b020b4a4fb7073aaa2e26aba, type: 3}
+ m_PreIntegratedFGD_MarschnerPS: {fileID: 4800000, guid: 31f36caf0a5e7f848a1b5328b6ad3eb8, type: 3}
+ m_PreIntegratedFiberScatteringCS: {fileID: 7200000, guid: 4a087c9d074552c48aeb85184d56312e, type: 3}
+ m_VolumetricMaterialCS: {fileID: 7200000, guid: 26f18c9cb0bccbf4481f8c84579affb1, type: 3}
+ m_EyeMaterialCS: {fileID: 7200000, guid: 76f78ba05cea1ed449c1ef613ab90597, type: 3}
+ m_FilterAreaLightCookiesPS: {fileID: 4800000, guid: c243aac96dda5fa40bed693ed5ba02c4, type: 3}
+ m_BuildProbabilityTablesCS: {fileID: 7200000, guid: b9f26cf340afe9145a699753531b2a4c, type: 3}
+ m_ComputeGgxIblSampleDataCS: {fileID: 7200000, guid: 764a24bb47ef5ba4781d9ae82ca07445, type: 3}
+ m_GGXConvolvePS: {fileID: 4800000, guid: 123ed592ad5c2494b8aed301fd609e7b, type: 3}
+ m_CharlieConvolvePS: {fileID: 4800000, guid: 5685fd17e71045e4ca9fefca38a7c177, type: 3}
+ m_GpuPrefixSumCS: {fileID: 7200000, guid: 76fcf27f72d24907b1846939a7a2d83f, type: 3}
+ m_GpuSortCS: {fileID: 7200000, guid: e485b8d649234276ababbd36fcec8c1a, type: 3}
+ m_BilateralUpsampleCS: {fileID: 7200000, guid: 68e831c555284d741b985e05369f0e63, type: 3}
+ m_TemporalFilterCS: {fileID: 7200000, guid: 741979ff70f7bd6489fbcb464280ecff, type: 3}
+ m_DiffuseDenoiserCS: {fileID: 7200000, guid: b4ed2382141619f40af1f743a84ccaea, type: 3}
+ m_FurnaceTestCS: {fileID: 7200000, guid: 9c19385e40e70ea41811a942a46b04a3, type: 3}
+ m_ObjectIDPS: {fileID: -6465566751694194690, guid: 89daf81f8e8f6634da726cbca859ca38, type: 3}
+ m_ComputeThicknessPS: {fileID: 4800000, guid: 4d2c6daf0d4968748bb5b82d5016fdea, type: 3}
+ m_CopyChannelCS: {fileID: 7200000, guid: a4d45eda75e8e474dbe24a31f741f3b4, type: 3}
+ m_ClearBuffer2D: {fileID: 7200000, guid: fa9b66253270e9c47a67ae142f669eb4, type: 3}
+ m_EncodeBC6HCS: {fileID: 7200000, guid: aa922d239de60304f964e24488559eeb, type: 3}
+ m_CubeToPanoPS: {fileID: 4800000, guid: 595434cc3b6405246b6cd3086d0b6f7d, type: 3}
+ m_BlitCubeTextureFacePS: {fileID: 4800000, guid: d850d0a2481878d4bbf17e5126b04163, type: 3}
+ m_ClearUIntTextureCS: {fileID: 7200000, guid: d067ad4b88af51c498875426894aef76, type: 3}
+ m_Texture3DAtlasCS: {fileID: 7200000, guid: 81522e314a83afd4a8ed43bd00757051, type: 3}
+ m_XrMirrorViewPS: {fileID: 4800000, guid: e6255f98cf405eb45ab6f9006cf11e1f, type: 3}
+ m_XrOcclusionMeshPS: {fileID: 4800000, guid: 46a45b32bb110604fb36216b63bcdb81, type: 3}
+ m_ContactShadowCS: {fileID: 7200000, guid: 3e6900e06dc185a4380af4dacb4db0a4, type: 3}
+ m_ScreenSpaceShadowPS: {fileID: 4800000, guid: bfa43a48695613b4ea19c58858ae1a61, type: 3}
+ m_ShadowClearPS: {fileID: 4800000, guid: e3cab24f27741f44d8af1e94d006267c, type: 3}
+ m_EvsmBlurCS: {fileID: 7200000, guid: fb36979473602464fa32deacb9630c08, type: 3}
+ m_DebugHDShadowMapPS: {fileID: 4800000, guid: 93d40cc9a6e13994f86f576a624efa18, type: 3}
+ m_DebugLocalVolumetricFogAtlasPS: {fileID: 4800000, guid: 8371b763f09c7304889c22aa97ebdfd2, type: 3}
+ m_MomentShadowsCS: {fileID: 7200000, guid: 4dea53e2ff15ed0448817c2aa4246e53, type: 3}
+ m_ShadowBlitPS: {fileID: 4800000, guid: ca059f1af4587a24b9a9eed3b66cff0f, type: 3}
+ m_DecalNormalBufferPS: {fileID: 4800000, guid: fd532bf1795188c4daaa66ea798b8b0a, type: 3}
+ m_GTAOCS: {fileID: 7200000, guid: 6710b06492bd58c4bb8aec0fdc1fced3, type: 3}
+ m_GTAOSpatialDenoiseCS: {fileID: 7200000, guid: 2cb33c21587d12b4388d7866ab6c65f6, type: 3}
+ m_GTAOTemporalDenoiseCS: {fileID: 7200000, guid: 31e0ca4c210f97c468037d11a5b832bb, type: 3}
+ m_GTAOCopyHistoryCS: {fileID: 7200000, guid: 7f43be57ffd12ff469d4fc175c00c4b4, type: 3}
+ m_GTAOBlurAndUpsample: {fileID: 7200000, guid: 9eb1abde882538a4ea46fa23e49ab9fa, type: 3}
+ m_CopyAlphaCS: {fileID: 7200000, guid: c2c7eb6611725264187721ef9df0354b, type: 3}
+ m_NanKillerCS: {fileID: 7200000, guid: 83982f199acf927499576a99abc9bea9, type: 3}
+ m_ExposureCS: {fileID: 7200000, guid: 976d7bce54fae534fb9ec67e9c18570c, type: 3}
+ m_HistogramExposureCS: {fileID: 7200000, guid: 222da48299136f34b8e3fb75ae9f8ac7, type: 3}
+ m_ApplyExposureCS: {fileID: 7200000, guid: 1a6fea1dc099b984d8f2b27d504dc096, type: 3}
+ m_UberPostCS: {fileID: 7200000, guid: f1bf52f7c71bffd4f91e6cd90d12a4f7, type: 3}
+ m_LutBuilder3DCS: {fileID: 7200000, guid: 37f2b1b0ecd6f1c439e4c1b4f2fdb524, type: 3}
+ m_DepthOfFieldKernelCS: {fileID: 7200000, guid: 7869415cc3e4eaa4d82ac21a752a2780, type: 3}
+ m_DepthOfFieldCoCCS: {fileID: 7200000, guid: 048b235b54fbfaa4d80ec85ea847d4f8, type: 3}
+ m_DepthOfFieldCoCReprojectCS: {fileID: 7200000, guid: 4980decaa3878d6448569489f5fc7931, type: 3}
+ m_DepthOfFieldDilateCS: {fileID: 7200000, guid: 1c93af4338c0c1b42b92464992eebc10, type: 3}
+ m_DepthOfFieldMipCS: {fileID: 7200000, guid: d3ef53de069ded64e8377cba6eb951fa, type: 3}
+ m_DepthOfFieldMipSafeCS: {fileID: 7200000, guid: 2d24ee7b2c804d947a5c371c12ed46bd, type: 3}
+ m_DepthOfFieldPrefilterCS: {fileID: 7200000, guid: f2b89d19910854346b792fe7177ce634, type: 3}
+ m_DepthOfFieldTileMaxCS: {fileID: 7200000, guid: 84f84585ea8a7a849bea4a581adb93a7, type: 3}
+ m_DepthOfFieldGatherCS: {fileID: 7200000, guid: 486be52dddc4e054fb10a7b9b78788c2, type: 3}
+ m_DepthOfFieldCombineCS: {fileID: 7200000, guid: c8049ca85c4c7d047ba28f34d800c663, type: 3}
+ m_DepthOfFieldPreCombineFarCS: {fileID: 7200000, guid: 3b4a2acd03d1ce2438d93c325d588735, type: 3}
+ m_DepthOfFieldClearIndirectArgsCS: {fileID: 7200000, guid: 69905045e1d0a65458b205d6ab55502b, type: 3}
+ m_PaniniProjectionCS: {fileID: 7200000, guid: 0ddbf72c8fbb6e44b983f470c8384ef6, type: 3}
+ m_DofCircleOfConfusion: {fileID: 7200000, guid: 75332b7b315c80d4babe506820aa0bfd, type: 3}
+ m_DofGatherCS: {fileID: 7200000, guid: 1e6b16a7970a1494db74b1d3d007d1cc, type: 3}
+ m_DofCoCMinMaxCS: {fileID: 7200000, guid: c70dd492c3d2fe94589d6ca8d4e37915, type: 3}
+ m_DofMinMaxDilateCS: {fileID: 7200000, guid: 757a3f81b35177b44b2b178909b49172, type: 3}
+ m_DofCombineCS: {fileID: 7200000, guid: d9b940a90a2d0884f94990a0dde43a53, type: 3}
+ m_DofComputeSlowTilesCS: {fileID: 7200000, guid: b89f86a76de81ee42ae16daad78eb382, type: 3}
+ m_DofComputeApertureShapeCS: {fileID: 7200000, guid: dd5acecb27e20334fa3be332e85172df, type: 3}
+ m_MotionBlurMotionVecPrepCS: {fileID: 7200000, guid: ed9438fa777911d48933402087203b15, type: 3}
+ m_MotionBlurGenTileCS: {fileID: 7200000, guid: 336e1fdbb3a1b8647b06208415f87804, type: 3}
+ m_MotionBlurMergeTileCS: {fileID: 7200000, guid: cd14ddf849edeed43b0e3ccf66023038, type: 3}
+ m_MotionBlurNeighborhoodTileCS: {fileID: 7200000, guid: 5ea9865df3e53b448856785b88f8e7b9, type: 3}
+ m_MotionBlurCS: {fileID: 7200000, guid: 2af5c49c7865edb4b823826970ec176a, type: 3}
+ m_BloomPrefilterCS: {fileID: 7200000, guid: 243b24008041aaa4a91800690f63c684, type: 3}
+ m_BloomBlurCS: {fileID: 7200000, guid: 133a68380d324de4ea8d3ff8657b02d8, type: 3}
+ m_BloomUpsampleCS: {fileID: 7200000, guid: 5dbb0ac12cb11f84084b7e5633481bd1, type: 3}
+ m_DepthValuesPS: {fileID: 4800000, guid: 6e6a4a3dbb788234594aa74f2d6aeb6f, type: 3}
+ m_ColorResolvePS: {fileID: 4800000, guid: dd7047092f3c82b40b3a07868f9c4de2, type: 3}
+ m_ResolveMotionVecPS: {fileID: 4800000, guid: ea18ca9826385e943979c46cf98968cc, type: 3}
+ m_FXAACS: {fileID: 7200000, guid: 1535d29f35ea86b4282b6ca652002e2a, type: 3}
+ m_FinalPassPS: {fileID: 4800000, guid: 5ac9ef0c50282754b93c7692488e7ee7, type: 3}
+ m_ClearBlackPS: {fileID: 4800000, guid: 3330c1503ea8c6d4d9408df3f64227eb, type: 3}
+ m_SMAAPS: {fileID: 4800000, guid: 9655f4aa89a469c49aceaceabf9bc77b, type: 3}
+ m_TemporalAntialiasingPS: {fileID: 4800000, guid: 3dd9fd928fdb83743b1f27d15df22179, type: 3}
+ m_SharpeningCS: {fileID: 7200000, guid: 667941138a753f447bad3bf94052f590, type: 3}
+ m_LensFlareDataDrivenPS: {fileID: 4800000, guid: 85330b3de0cfebc4ba78b2d61b1a2899, type: 3}
+ m_LensFlareScreenSpacePS: {fileID: 4800000, guid: 97abfc9f0525e1849b417eaae10f0329, type: 3}
+ m_LensFlareMergeOcclusionCS: {fileID: 7200000, guid: 07492750f384d9a4da9aaf5d2feeed4a, type: 3}
+ m_DLSSBiasColorMaskPS: {fileID: 4800000, guid: 017a05924c0b0484ca29717ed0c60343, type: 3}
+ m_CompositeUIAndOETFApplyPS: {fileID: 4800000, guid: 08b7ad21d2b8e9142b730b22d7355821, type: 3}
+ m_ContrastAdaptiveSharpenCS: {fileID: 7200000, guid: 560896aec2f412c48995be35551a4ac6, type: 3}
+ m_EdgeAdaptiveSpatialUpsamplingCS: {fileID: 7200000, guid: f054fa9fe2c85bb42b9489e2f9ffb643, type: 3}
+ m_VTFeedbackDownsample: {fileID: 7200000, guid: 32d963548086c2c439aeb23a93e9a00a, type: 3}
+ m_AccumulationCS: {fileID: 7200000, guid: ed80add7a217efa468d137d6f7c668f3, type: 3}
+ m_BlitAndExposeCS: {fileID: 7200000, guid: 4b9a355e064de034dbfafe4583ba766b, type: 3}
+ m_AlphaInjectionPS: {fileID: 4800000, guid: 4edd96259a5e8b44c90479928f0cd11e, type: 3}
+ m_ChromaKeyingPS: {fileID: 4800000, guid: 49feb6b111e82ec4eb6d3d08e4b6903e, type: 3}
+ m_CustomClearPS: {fileID: 4800000, guid: 9cef3686fa32c8840947ed99b561195c, type: 3}
+ - rid: 5137683131079852046
+ type: {class: RenderingPathFrameSettings, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_Version: 0
+ m_Camera:
+ bitDatas:
+ data1: 72198260625768269
+ data2: 13799031439032811544
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ m_CustomOrBakedReflection:
+ bitDatas:
+ data1: 135310754214733
+ data2: 4539628428684460056
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ m_RealtimeReflection:
+ bitDatas:
+ data1: 139923391782733
+ data2: 13763000465807638544
+ lodBias: 1
+ lodBiasMode: 0
+ lodBiasQualityLevel: 0
+ maximumLODLevel: 0
+ maximumLODLevelMode: 0
+ maximumLODLevelQualityLevel: 0
+ sssQualityMode: 0
+ sssQualityLevel: 0
+ sssCustomSampleBudget: 20
+ sssCustomDownsampleSteps: 0
+ msaaMode: 1
+ materialQuality: 0
+ - rid: 5137683131079852047
+ type: {class: HDRenderPipelineRuntimeMaterials, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_PBRSkyMaterial: {fileID: -876546973899608171, guid: 02532cbb810fb404db49da84f1efe41e, type: 3}
+ m_AreaLightMaterial: {fileID: 2100000, guid: ef5f65c980e25304098a95e28f3bd20b, type: 2}
+ m_AreaLightCookieMaterial: {fileID: 2100000, guid: 78c6825c5d9c3664f9879ae8609618c7, type: 2}
+ - rid: 5137683131079852048
+ type: {class: HDRenderingLayersLimitSettings, ns: UnityEditor.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Editor}
+ data:
+ m_Version: 0
+ - rid: 5137683131079852049
+ type: {class: ProbeVolumeGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_Version: 1
+ m_ProbeVolumeDisableStreamingAssets: 0
+ - rid: 5137683131079852050
+ type: {class: STP/RuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_setupCS: {fileID: 7200000, guid: 33be2e9a5506b2843bdb2bdff9cad5e1, type: 3}
+ m_preTaaCS: {fileID: 7200000, guid: a679dba8ec4d9ce45884a270b0e22dda, type: 3}
+ m_taaCS: {fileID: 7200000, guid: 3923900e2b41b5e47bc25bfdcbcdc9e6, type: 3}
+ - rid: 5137683131079852051
+ type: {class: RenderGraphGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_version: 0
+ m_EnableCompilationCaching: 1
+ m_EnableValidityChecks: 1
+ - rid: 5137683131079852052
+ type: {class: ShaderStrippingSetting, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_Version: 0
+ m_ExportShaderVariants: 1
+ m_ShaderVariantLogLevel: 0
+ m_StripRuntimeDebugShaders: 0
+ - rid: 5137683131079852053
+ type: {class: RenderingDebuggerRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_version: 0
+ - rid: 5137683131079852054
+ type: {class: ProbeVolumeBakingResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_Version: 1
+ dilationShader: {fileID: 7200000, guid: 6bb382f7de370af41b775f54182e491d, type: 3}
+ subdivideSceneCS: {fileID: 7200000, guid: bb86f1f0af829fd45b2ebddda1245c22, type: 3}
+ voxelizeSceneShader: {fileID: 4800000, guid: c8b6a681c7b4e2e4785ffab093907f9e, type: 3}
+ traceVirtualOffsetCS: {fileID: -6772857160820960102, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3}
+ traceVirtualOffsetRT: {fileID: -5126288278712620388, guid: ff2cbab5da58bf04d82c5f34037ed123, type: 3}
+ skyOcclusionCS: {fileID: -6772857160820960102, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3}
+ skyOcclusionRT: {fileID: -5126288278712620388, guid: 5a2a534753fbdb44e96c3c78b5a6999d, type: 3}
+ renderingLayerCS: {fileID: -6772857160820960102, guid: 94a070d33e408384bafc1dea4a565df9, type: 3}
+ renderingLayerRT: {fileID: -5126288278712620388, guid: 94a070d33e408384bafc1dea4a565df9, type: 3}
+ - rid: 5137683131079852055
+ type: {class: ProbeVolumeRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_Version: 1
+ probeVolumeBlendStatesCS: {fileID: 7200000, guid: a3f7b8c99de28a94684cb1daebeccf5d, type: 3}
+ probeVolumeUploadDataCS: {fileID: 7200000, guid: 0951de5992461754fa73650732c4954c, type: 3}
+ probeVolumeUploadDataL2CS: {fileID: 7200000, guid: 6196f34ed825db14b81fb3eb0ea8d931, type: 3}
+ - rid: 5137683131079852056
+ type: {class: VrsRenderPipelineRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_TextureComputeShader: {fileID: 7200000, guid: cacb30de6c40c7444bbc78cb0a81fd2a, type: 3}
+ m_VisualizationShader: {fileID: 4800000, guid: 620b55b8040a88d468e94abe55bed5ba, type: 3}
+ m_VisualizationLookupTable:
+ m_Data:
+ - {r: 1, g: 0, b: 0, a: 1}
+ - {r: 1, g: 0.92156863, b: 0.015686275, a: 1}
+ - {r: 1, g: 1, b: 1, a: 1}
+ - {r: 0, g: 1, b: 0, a: 1}
+ - {r: 0.75, g: 0.75, b: 0, a: 1}
+ - {r: 0, g: 0.75, b: 0.55, a: 1}
+ - {r: 0.5, g: 0, b: 0.5, a: 1}
+ - {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ - {r: 0, g: 0, b: 1, a: 1}
+ m_ConversionLookupTable:
+ m_Data:
+ - {r: 1, g: 0, b: 0, a: 1}
+ - {r: 1, g: 0.92156863, b: 0.015686275, a: 1}
+ - {r: 1, g: 1, b: 1, a: 1}
+ - {r: 0, g: 1, b: 0, a: 1}
+ - {r: 0.75, g: 0.75, b: 0, a: 1}
+ - {r: 0, g: 0.75, b: 0.55, a: 1}
+ - {r: 0.5, g: 0, b: 0.5, a: 1}
+ - {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ - {r: 0, g: 0, b: 1, a: 1}
+ - rid: 5137683131079852057
+ type: {class: RenderGraphUtilsResources, ns: UnityEngine.Rendering.RenderGraphModule.Util, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_Version: 0
+ m_CoreCopyPS: {fileID: 4800000, guid: 12dc59547ea167a4ab435097dd0f9add, type: 3}
+ - rid: 5137683131079852058
+ type: {class: LightmapSamplingSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_Version: 1
+ m_UseBicubicLightmapSampling: 0
+ - rid: 5137683131079852059
+ type: {class: ProbeVolumeDebugResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_Version: 1
+ probeVolumeDebugShader: {fileID: 4800000, guid: 3b21275fd12d65f49babb5286f040f2d, type: 3}
+ probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 3a80877c579b9144ebdcc6d923bca303, type: 3}
+ probeVolumeSamplingDebugShader: {fileID: 4800000, guid: bf54e6528c79a224e96346799064c393, type: 3}
+ probeVolumeOffsetDebugShader: {fileID: 4800000, guid: db8bd7436dc2c5f4c92655307d198381, type: 3}
+ probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 20be25aac4e22ee49a7db76fb3df6de2, type: 3}
+ numbersDisplayTex: {fileID: 2800000, guid: 73fe53b428c5b3440b7e87ee830b608a, type: 3}
+ - rid: 8556427327610290176
+ type: {class: HDRenderPipelineRuntimeAssets, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_DefaultDiffusionProfile: {fileID: 11400000, guid: 2b7005ba3a4d8474b8cdc34141ad766e, type: 2}
+ m_ComputeMaterialLibrary: {fileID: 11400000, guid: 833ab0ec618db411699ea8cb1a221d0d, type: 2}
+ m_EmissiveCylinderMesh: {fileID: 2534964839176971238, guid: accb6d90f0d50fe4ca0f68159b4323de, type: 3}
+ m_EmissiveQuadMesh: {fileID: 4300000, guid: 1d5a8595286f94f4bb54171d49f473c3, type: 3}
+ m_SphereMesh: {fileID: 4300000, guid: 9e0af751bc36ea146940ba245193e28c, type: 3}
+ - rid: 8556427327610290177
+ type: {class: HDRenderPipelineEditorTextures, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_MoonAlbedo: {fileID: 2800000, guid: cce9f0cf7e606e547a7317aedb4ad6d9, type: 3}
+ - rid: 8556427327610290178
+ type: {class: HDRPRayTracingResources, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_ReflectionRayTracingRT: {fileID: 4807578003741378534, guid: 1a500e5079fba734aa90fe92e70ea131, type: 3}
+ m_ReflectionRayTracingCS: {fileID: 7200000, guid: 591207652a75a4844a89c0b9f45a61f2, type: 3}
+ m_ReflectionBilateralFilterCS: {fileID: 7200000, guid: 07c445e7aa373284a9cc1584ca9b3f84, type: 3}
+ m_ShadowRayTracingRT: {fileID: 4807578003741378534, guid: 6f93cb4dc095de14993f8d2baa972d5b, type: 3}
+ m_ContactShadowRayTracingRT: {fileID: 4807578003741378534, guid: acaf840af875ab541b8f10069b7444c8, type: 3}
+ m_ShadowRayTracingCS: {fileID: 7200000, guid: fc95b5dff16ba594896e211a389c03fc, type: 3}
+ m_ShadowFilterCS: {fileID: 7200000, guid: f71fd853a538bf74e9e5a7228fc14dae, type: 3}
+ m_ForwardRayTracing: {fileID: 4807578003741378534, guid: d3a89a2d3f73b3e4da6f191e844fe68c, type: 3}
+ m_LightClusterBuildCS: {fileID: 7200000, guid: c0625ea908b52854bbf1d456e34026e4, type: 3}
+ m_LightClusterDebugS: {fileID: 4800000, guid: c4d81c6e573560444bb1ea11ae4acfcb, type: 3}
+ m_LightClusterDebugCS: {fileID: 7200000, guid: d48a3a5496d98a44c89f335934805d10, type: 3}
+ m_IndirectDiffuseRayTracingOffRT: {fileID: 4807578003741378534, guid: fbcaf423d9f8e3843b2c046420608293, type: 3}
+ m_IndirectDiffuseRayTracingL1RT: {fileID: 4807578003741378534, guid: 653044b9878c5764e818b20399112284, type: 3}
+ m_IndirectDiffuseRaytracingL2RT: {fileID: 4807578003741378534, guid: 866a72c4868acec4088b0956b9ca73f9, type: 3}
+ m_IndirectDiffuseRayTracingCS: {fileID: 7200000, guid: c5ad968b7cd39114d85dd860b3809087, type: 3}
+ m_AoRayTracingRT: {fileID: 4807578003741378534, guid: 82dc8cd069971d2488c502b0f32b94fb, type: 3}
+ m_AoRayTracingCS: {fileID: 7200000, guid: 10c05366baf9b0a44a827f3ef890b9e6, type: 3}
+ m_SubSurfaceRayTracingRT: {fileID: 4807578003741378534, guid: b29a18f967c92364492508dddf78cff7, type: 3}
+ m_SubSurfaceRayTracingCS: {fileID: 7200000, guid: 4e5684a8dba46fe42a47642f9b0a6b89, type: 3}
+ m_SimpleDenoiserCS: {fileID: 7200000, guid: 74a980f1da9a4f842996035350fe756c, type: 3}
+ m_ReflectionDenoiserCS: {fileID: 7200000, guid: 1b12fb238086d0f49983b4aa72768349, type: 3}
+ m_DiffuseShadowDenoiserCS: {fileID: 7200000, guid: 9af806eab5889a74dad838edc9b07d07, type: 3}
+ m_ReblurPreBlurCS: {fileID: 7200000, guid: 0be88ddf5240d49468d9159340465bfd, type: 3}
+ m_ReblurTemporalAccumulationCS: {fileID: 7200000, guid: 11794ae415a38c747ba65d57d1bb60f9, type: 3}
+ m_ReblurMipGenerationCS: {fileID: 7200000, guid: 44195ddb6d9240646847cbf4f38dfa98, type: 3}
+ m_ReblurHistoryFixCS: {fileID: 7200000, guid: 4cc204b99166a9c40819bc04927c4feb, type: 3}
+ m_ReblurBlurCS: {fileID: 7200000, guid: cff077c60ac76074893014e2f49e3159, type: 3}
+ m_ReblurPostBlurCS: {fileID: 7200000, guid: 965700f9b9e0fec4bb31415ae91f0e09, type: 3}
+ m_ReblurCopyHistoryCS: {fileID: 7200000, guid: 0d5230c403883b84cbf9d1d3b9e57beb, type: 3}
+ m_ReblurTemporalStabilizationCS: {fileID: 7200000, guid: 4feaa605aeff33840b659850ce6bfcc2, type: 3}
+ m_GBufferRayTracingRT: {fileID: 4807578003741378534, guid: e4c61a77b91f35845bbb546b848b18e5, type: 3}
+ m_DeferredRayTracingCS: {fileID: 7200000, guid: 6e5ef632062bc484f812c7976f450ed1, type: 3}
+ m_PathTracingRT: {fileID: 4807578003741378534, guid: c4f4525a058009a409fea974f9ad8d03, type: 3}
+ m_PathTracingSkySamplingDataCS: {fileID: 7200000, guid: 8ef71a4b666992544ac5575a0e599a68, type: 3}
+ m_RayMarchingCS: {fileID: 7200000, guid: 78d9a89700295a4418d0921bf27e1857, type: 3}
+ m_RayBinningCS: {fileID: 7200000, guid: cddcb515ffe9a914893d6d8fc1d85454, type: 3}
+ m_CountTracedRaysCS: {fileID: 7200000, guid: e1f3fa867f1dfbd4ab7dd4d39d2b96d8, type: 3}
+ m_ReflectionFilterMappingTexture: {fileID: 2800000, guid: 82eec49626a00b047ba86244607816c8, type: 3}
+ m_RtasDebugRT: {fileID: 4807578003741378534, guid: 7f98079d20376fd4f8590d58be99ab0d, type: 3}
+ - rid: 8556427327610290179
+ type: {class: HDRenderPipelineEditorMaterials, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_DefaultMaterial: {fileID: 2100000, guid: 73c176f402d2c2f4d929aa5da7585d17, type: 2}
+ m_DefaultParticleMaterial: {fileID: 2100000, guid: b739a3f02ff77bf48b7636e64c3e3b4c, type: 2}
+ m_DefaultTerrainMaterial: {fileID: 2100000, guid: 22ff8771d87ef27429e670136399094b, type: 2}
+ m_DefaultMirrorMat: {fileID: 2100000, guid: 6b17274157b33bc45b6a40e7d4ff51fe, type: 2}
+ m_DefaultDecalMat: {fileID: 2100000, guid: 500e733574922d04ea961553b1b26a63, type: 2}
+ m_GUITextureBlit2SRGB: {fileID: 2100000, guid: 6e95c04e4e686554e8bed96ee69f690c, type: 2}
+ - rid: 8556427327610290180
+ type: {class: HDRenderPipelineRuntimeTextures, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_DebugFontTex: {fileID: 2800000, guid: a3ad2df0e49aaa341a3b3a80f93b3f66, type: 3}
+ m_ColorGradient: {fileID: 2800000, guid: 4ea52e665573c1644bf05dd9b11fd2a4, type: 3}
+ m_MatcapTex: {fileID: 2800000, guid: e655445a13b501944a2641ea144edda5, type: 3}
+ m_BlueNoise16LTex:
+ - {fileID: 2800000, guid: efa2ea5416a18da46b64f1266464ffc7, type: 3}
+ - {fileID: 2800000, guid: 0330b95d1d741fc4281eac4aec9d2eae, type: 3}
+ - {fileID: 2800000, guid: 8a51abfa06f36a24e8621796aa6cd4b3, type: 3}
+ - {fileID: 2800000, guid: 29f15236a89d7d748abaa25d8f69f614, type: 3}
+ - {fileID: 2800000, guid: 6abadf255584bba4c944b1e00436ef03, type: 3}
+ - {fileID: 2800000, guid: 979eec7b1833b0441a2cc73bf8db2544, type: 3}
+ - {fileID: 2800000, guid: 8f520abb155364c46b0f0748ef34ec0d, type: 3}
+ - {fileID: 2800000, guid: 8b7bdf66a62cb51409d47548bb0d542f, type: 3}
+ - {fileID: 2800000, guid: fed7135c4936ff947b1477236ec392cd, type: 3}
+ - {fileID: 2800000, guid: 3c2108b42cf27e3479d8587367508c6f, type: 3}
+ - {fileID: 2800000, guid: b6fa54cec31997445a1b5fd8e2887484, type: 3}
+ - {fileID: 2800000, guid: 79f42a2cc0e32614ba4e0fee3e0f88b9, type: 3}
+ - {fileID: 2800000, guid: a75de30c08d74744c9e973e42c2e00e5, type: 3}
+ - {fileID: 2800000, guid: c6c47a7f59293a847a8471bb74b9a262, type: 3}
+ - {fileID: 2800000, guid: 55e474b0d2c992240aed7e3bcbebb78a, type: 3}
+ - {fileID: 2800000, guid: b987ab952dc89bc439eebfaf7b977f51, type: 3}
+ - {fileID: 2800000, guid: f242013130364874486ad0854d54b5d9, type: 3}
+ - {fileID: 2800000, guid: 5e40f3339a0a5be4ea4442562c53575a, type: 3}
+ - {fileID: 2800000, guid: 6f6e861d2ff8cd641b424245a18393a0, type: 3}
+ - {fileID: 2800000, guid: 96b4b7db9e972c54db03d280a7924fb8, type: 3}
+ - {fileID: 2800000, guid: f8c387db83f623d4c875b355974b1398, type: 3}
+ - {fileID: 2800000, guid: ba5d54ee870713c41a40c8435ad4fdea, type: 3}
+ - {fileID: 2800000, guid: 98de916e94bbf4541981fe7c1bd7008f, type: 3}
+ - {fileID: 2800000, guid: e013b0f34384ea242b2366eafe8d66b4, type: 3}
+ - {fileID: 2800000, guid: 08e7f74e876f85247ad1104f35322e19, type: 3}
+ - {fileID: 2800000, guid: eaed38d1a2336e14b8fd351f65d3eddb, type: 3}
+ - {fileID: 2800000, guid: 9b47ce76307ef714d9c08f1f7d37a173, type: 3}
+ - {fileID: 2800000, guid: 4cf893d4f07705d40a404330fb6694d5, type: 3}
+ - {fileID: 2800000, guid: 4ba6dd9a348fff64aba90f736da533bd, type: 3}
+ - {fileID: 2800000, guid: faedd3bf25384dc47b38a94a658e19fc, type: 3}
+ - {fileID: 2800000, guid: cb7d595d4b67de146abf1b1f4d45f417, type: 3}
+ - {fileID: 2800000, guid: a836cbb14cfefd54a8b9ca37d6aadde6, type: 3}
+ m_BlueNoise16RGBTex:
+ - {fileID: 2800000, guid: b232903ea527aba4786ab9a725e610e9, type: 3}
+ - {fileID: 2800000, guid: fe6c6d7fed228ae4c9034639926613ff, type: 3}
+ - {fileID: 2800000, guid: 1dae10311eb6da5428b4247f883f9f0c, type: 3}
+ - {fileID: 2800000, guid: 668a0101474cc3149bdf7b69bdaad1eb, type: 3}
+ - {fileID: 2800000, guid: a3a352512b3774b44aeeb7414aafce58, type: 3}
+ - {fileID: 2800000, guid: f3767acdf061ed14380a360366ffe91c, type: 3}
+ - {fileID: 2800000, guid: a0d5f1353077a9d4d9bf0fdfbc07d718, type: 3}
+ - {fileID: 2800000, guid: 5a195bcf888979144a5db9a99c43a747, type: 3}
+ - {fileID: 2800000, guid: 8d79e4efe64973b4ab5c6e3982b15772, type: 3}
+ - {fileID: 2800000, guid: eaf67a58951a945428cb394e81ed3765, type: 3}
+ - {fileID: 2800000, guid: 287dda93fa25eea4fbb9f7f5ef014718, type: 3}
+ - {fileID: 2800000, guid: 4cb7c602f368c2d44b42c51c353e5b2c, type: 3}
+ - {fileID: 2800000, guid: 3fa94aebb9c04c54aa0cebde90c210ff, type: 3}
+ - {fileID: 2800000, guid: aa35bbfe9eac94d49bb95cd8804c51a7, type: 3}
+ - {fileID: 2800000, guid: ba3b2a48f5297c74eb3b4b2771629d60, type: 3}
+ - {fileID: 2800000, guid: 17165acde01c02f4bb45d0ffd25d5158, type: 3}
+ - {fileID: 2800000, guid: 280a79ac7e2b6e940a7199b8f7e10407, type: 3}
+ - {fileID: 2800000, guid: b75a320b602f27c4ab28904a10142a98, type: 3}
+ - {fileID: 2800000, guid: 226149deca448e745a7c377133e6ca7f, type: 3}
+ - {fileID: 2800000, guid: 059fba768df29964e9f07bd4fffb5776, type: 3}
+ - {fileID: 2800000, guid: 9dee14979276d81489a17afa605f3030, type: 3}
+ - {fileID: 2800000, guid: 3963568f414ac1545b64e5f1ff5daf5d, type: 3}
+ - {fileID: 2800000, guid: a96a5d146fa164d4ebd67318a957a75a, type: 3}
+ - {fileID: 2800000, guid: b5fa2a735b9278349a91f3dbb77691c0, type: 3}
+ - {fileID: 2800000, guid: d3c864eb1f6e4b34c91d1931ad0064a3, type: 3}
+ - {fileID: 2800000, guid: 97f308a7009457545a975a9a498499ce, type: 3}
+ - {fileID: 2800000, guid: daa405d7e1e253a40952bed9e9ca63cc, type: 3}
+ - {fileID: 2800000, guid: 4dbadef8044229d47b9a391147dad1c4, type: 3}
+ - {fileID: 2800000, guid: 7ce9507d3d1997743b39f335a7f868fd, type: 3}
+ - {fileID: 2800000, guid: 7641a2b116fafd64d9c3d6459fdfe801, type: 3}
+ - {fileID: 2800000, guid: c6a5e40e6746fef4fa486e8f620ee8d4, type: 3}
+ - {fileID: 2800000, guid: fd4189357c6dfb94fa2d36afbce72086, type: 3}
+ m_OwenScrambledRGBATex: {fileID: 2800000, guid: b0fe077c1ee7d80428f3d8dfa28a027d, type: 3}
+ m_OwenScrambled256Tex: {fileID: 2800000, guid: 2a205358e67aa9e4a94a128ac9362f4e, type: 3}
+ m_ScramblingTex: {fileID: 2800000, guid: bf25cd6288e2c8d43854a61a8496a830, type: 3}
+ m_RankingTile1SPP: {fileID: 2800000, guid: f2fe0251f704c4c478a8063775cffedb, type: 3}
+ m_ScramblingTile1SPP: {fileID: 2800000, guid: 6185473f62ad3e74da4acac5d482917a, type: 3}
+ m_RankingTile8SPP: {fileID: 2800000, guid: af4bd638a4b3eb14781e6441adcdfbb9, type: 3}
+ m_ScramblingTile8SPP: {fileID: 2800000, guid: 152f8b933250a7b448fc2d4d301b9944, type: 3}
+ m_RankingTile256SPP: {fileID: 2800000, guid: 1e604a266c415cd46b36d97cd9220aa8, type: 3}
+ m_ScramblingTile256SPP: {fileID: 2800000, guid: 882fb55d7b3e7c94598a318df9376e32, type: 3}
+ m_EyeCausticLUT: {fileID: 11700000, guid: d4ec12283a044584794485916f4142a9, type: 3}
+ m_HairAttenuationLUT: {fileID: 11700000, guid: d37662e2b254e594abf839dddc5ab653, type: 2}
+ m_HairAzimuthalScatteringLUT: {fileID: 11700000, guid: d217deac7ff61094080126811521ab5b, type: 2}
+ m_HairLongitudinalScatteringLUT: {fileID: 11700000, guid: 0da412d38ea6ba3459322abe6984ca9b, type: 2}
+ m_FilmGrainTex:
+ - {fileID: 2800000, guid: 284a1ac236869fa4eacf377d73c7dff8, type: 3}
+ - {fileID: 2800000, guid: bd74961b009b93145a998ae93a5fc186, type: 3}
+ - {fileID: 2800000, guid: 58c1a5135746f854e8841c70a4b588b9, type: 3}
+ - {fileID: 2800000, guid: bdc6fb6e37de5824bb06e17ac19a8a1d, type: 3}
+ - {fileID: 2800000, guid: e4d8303457ba4854090965d854a7a741, type: 3}
+ - {fileID: 2800000, guid: 75e19bf5d3ef41d489aa05586243b58b, type: 3}
+ - {fileID: 2800000, guid: 6cafd4bed3e420a45a5702d61df0762c, type: 3}
+ - {fileID: 2800000, guid: a187955d1d88a954cb32c3c4e5f0aeda, type: 3}
+ - {fileID: 2800000, guid: 3f3cb0f4924d7a241b82a9081875f30d, type: 3}
+ - {fileID: 2800000, guid: a35bdcb2008832646b3c8d2eb11e38a9, type: 3}
+ m_SMAASearchTex: {fileID: 2800000, guid: dc95d70472e232b438d0fd38651e7ec2, type: 3}
+ m_SMAAAreaTex: {fileID: 2800000, guid: 92e0d85ab4eca874098e7fcf6f8f674e, type: 3}
+ m_DefaultHDRISky: {fileID: 8900000, guid: 8253d41e6e8b11a4cbe77a4f8f82934d, type: 3}
+ m_DefaultCloudMap: {fileID: 2800000, guid: 57a33fc2476a01644865bfde5f06e2f4, type: 3}
+ - rid: 8556427327610290181
+ type: {class: HDRenderPipelineEditorShaders, ns: UnityEngine.Rendering.HighDefinition, asm: Unity.RenderPipelines.HighDefinition.Runtime}
+ data:
+ m_GpuInlineDebugDrawerLine: {fileID: 4800000, guid: 039c5248164c71b4aa6d780131c1bfaf, type: 3}
+ m_AutodeskInteractive: {fileID: 4800000, guid: 7252379db4c18b641b517f2c91bb57e1, type: 3}
+ m_AutodeskInteractiveTransparent: {fileID: 4800000, guid: ee2ce0be66f45d9449d71ba9b49c2acd, type: 3}
+ m_AutodeskInteractiveMasked: {fileID: 4800000, guid: 29c4adff654862b40a2e9fb2015a42c3, type: 3}
+ m_DefaultSpeedTree8Shader: {fileID: -6465566751694194690, guid: 4819724840ee9444f9da841b477038ce, type: 3}
+ m_DefaultSpeedTree9Shader: {fileID: -6465566751694194690, guid: d81c74dd5f463104ca482aa23ef2c798, type: 3}
+ - rid: 8556427327610290182
+ type: {class: GPUResidentDrawerResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.GPUDriven.Runtime}
+ data:
+ m_Version: 0
+ m_InstanceDataBufferCopyKernels: {fileID: 7200000, guid: f984aeb540ded8b4fbb8a2047ab5b2e2, type: 3}
+ m_InstanceDataBufferUploadKernels: {fileID: 7200000, guid: 53864816eb00f2343b60e1a2c5a262ef, type: 3}
+ m_TransformUpdaterKernels: {fileID: 7200000, guid: 2a567b9b2733f8d47a700c3c85bed75b, type: 3}
+ m_WindDataUpdaterKernels: {fileID: 7200000, guid: fde76746e4fd0ed418c224f6b4084114, type: 3}
+ m_OccluderDepthPyramidKernels: {fileID: 7200000, guid: 08b2b5fb307b0d249860612774a987da, type: 3}
+ m_InstanceOcclusionCullingKernels: {fileID: 7200000, guid: f6d223acabc2f974795a5a7864b50e6c, type: 3}
+ m_OcclusionCullingDebugKernels: {fileID: 7200000, guid: b23e766bcf50ca4438ef186b174557df, type: 3}
+ m_DebugOcclusionTestPS: {fileID: 4800000, guid: d3f0849180c2d0944bc71060693df100, type: 3}
+ m_DebugOccluderPS: {fileID: 4800000, guid: b3c92426a88625841ab15ca6a7917248, type: 3}
+ - rid: 8556427327610290183
+ type: {class: IncludeAdditionalRPAssets, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
+ data:
+ m_version: 0
+ m_IncludeReferencedInScenes: 1
+ m_IncludeAssetsByLabel: 1
+ m_LabelToInclude: HDRP:IncludeInBuild
diff --git a/Assets/Settings/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta b/Assets/Settings/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta
new file mode 100644
index 0000000..bdf3753
--- /dev/null
+++ b/Assets/Settings/HDRPDefaultResources/HDRenderPipelineGlobalSettings.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: ac0316ca287ba459492b669ff1317a6f
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/Settings/SkyandFogSettingsProfile.asset b/Assets/Settings/SkyandFogSettingsProfile.asset
new file mode 100644
index 0000000..2862c1b
--- /dev/null
+++ b/Assets/Settings/SkyandFogSettingsProfile.asset
@@ -0,0 +1,445 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &-7724654706381055090
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d877ec3e844f2ca46830012e8e79319b, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ active: 1
+ rotation:
+ m_OverrideState: 0
+ m_Value: 0
+ skyIntensityMode:
+ m_OverrideState: 0
+ m_Value: 0
+ exposure:
+ m_OverrideState: 0
+ m_Value: 0
+ multiplier:
+ m_OverrideState: 0
+ m_Value: 1
+ upperHemisphereLuxValue:
+ m_OverrideState: 0
+ m_Value: 1
+ upperHemisphereLuxColor:
+ m_OverrideState: 0
+ m_Value: {x: 0, y: 0, z: 0}
+ desiredLuxValue:
+ m_OverrideState: 0
+ m_Value: 20000
+ updateMode:
+ m_OverrideState: 0
+ m_Value: 0
+ updatePeriod:
+ m_OverrideState: 0
+ m_Value: 0
+ includeSunInBaking:
+ m_OverrideState: 0
+ m_Value: 0
+ type:
+ m_OverrideState: 0
+ m_Value: 1
+ atmosphericScattering:
+ m_OverrideState: 0
+ m_Value: 1
+ renderingMode:
+ m_OverrideState: 0
+ m_Value: 0
+ material:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ airDensityR:
+ m_OverrideState: 0
+ m_Value: 0.04534
+ airDensityG:
+ m_OverrideState: 0
+ m_Value: 0.10237241
+ airDensityB:
+ m_OverrideState: 0
+ m_Value: 0.23264056
+ airTint:
+ m_OverrideState: 0
+ m_Value: {r: 1, g: 1, b: 1, a: 1}
+ airMaximumAltitude:
+ m_OverrideState: 0
+ m_Value: 55261.973
+ aerosolDensity:
+ m_OverrideState: 0
+ m_Value: 0.01192826
+ aerosolTint:
+ m_OverrideState: 0
+ m_Value: {r: 0.9, g: 0.9, b: 0.9, a: 1}
+ aerosolMaximumAltitude:
+ m_OverrideState: 0
+ m_Value: 8289.296
+ aerosolAnisotropy:
+ m_OverrideState: 0
+ m_Value: 0
+ ozoneDensityDimmer:
+ m_OverrideState: 0
+ m_Value: 1
+ ozoneMinimumAltitude:
+ m_OverrideState: 0
+ m_Value: 20000
+ ozoneLayerWidth:
+ m_OverrideState: 0
+ m_Value: 20000
+ groundTint:
+ m_OverrideState: 1
+ m_Value: {r: 0.122641504, g: 0.1043775, b: 0.09313812, a: 1}
+ groundColorTexture:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ groundEmissionTexture:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ groundEmissionMultiplier:
+ m_OverrideState: 0
+ m_Value: 1
+ planetRotation:
+ m_OverrideState: 0
+ m_Value: {x: 0, y: 0, z: 0}
+ spaceEmissionTexture:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ spaceEmissionMultiplier:
+ m_OverrideState: 0
+ m_Value: 1
+ spaceRotation:
+ m_OverrideState: 0
+ m_Value: {x: 0, y: 0, z: 0}
+ colorSaturation:
+ m_OverrideState: 0
+ m_Value: 1
+ alphaSaturation:
+ m_OverrideState: 0
+ m_Value: 1
+ alphaMultiplier:
+ m_OverrideState: 0
+ m_Value: 1
+ horizonTint:
+ m_OverrideState: 0
+ m_Value: {r: 1, g: 1, b: 1, a: 1}
+ zenithTint:
+ m_OverrideState: 0
+ m_Value: {r: 1, g: 1, b: 1, a: 1}
+ horizonZenithShift:
+ m_OverrideState: 0
+ m_Value: 0
+ m_SkyVersion: 2
+ m_ObsoleteEarthPreset:
+ m_OverrideState: 0
+ m_Value: 1
+ planetaryRadius:
+ m_OverrideState: 0
+ m_Value: 6378100
+ planetCenterPosition:
+ m_OverrideState: 0
+ m_Value: {x: 0, y: -6378100, z: 0}
+--- !u!114 &-4151792930034644520
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 953beb541740ddc499d005ee80c9ff29, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ active: 1
+ quality:
+ m_OverrideState: 0
+ m_Value: 1
+ enabled:
+ m_OverrideState: 1
+ m_Value: 1
+ colorMode:
+ m_OverrideState: 0
+ m_Value: 1
+ color:
+ m_OverrideState: 0
+ m_Value: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ tint:
+ m_OverrideState: 0
+ m_Value: {r: 1, g: 1, b: 1, a: 1}
+ maxFogDistance:
+ m_OverrideState: 0
+ m_Value: 5000
+ mipFogMaxMip:
+ m_OverrideState: 0
+ m_Value: 0.5
+ mipFogNear:
+ m_OverrideState: 0
+ m_Value: 0
+ mipFogFar:
+ m_OverrideState: 0
+ m_Value: 1000
+ baseHeight:
+ m_OverrideState: 0
+ m_Value: 0
+ maximumHeight:
+ m_OverrideState: 0
+ m_Value: 50
+ meanFreePath:
+ m_OverrideState: 0
+ m_Value: 400
+ enableVolumetricFog:
+ m_OverrideState: 1
+ m_Value: 1
+ albedo:
+ m_OverrideState: 0
+ m_Value: {r: 1, g: 1, b: 1, a: 1}
+ globalLightProbeDimmer:
+ m_OverrideState: 0
+ m_Value: 1
+ depthExtent:
+ m_OverrideState: 0
+ m_Value: 64
+ denoisingMode:
+ m_OverrideState: 0
+ m_Value: 2
+ anisotropy:
+ m_OverrideState: 1
+ m_Value: 0.65
+ sliceDistributionUniformity:
+ m_OverrideState: 0
+ m_Value: 0.75
+ m_FogControlMode:
+ m_OverrideState: 0
+ m_Value: 0
+ screenResolutionPercentage:
+ m_OverrideState: 0
+ m_Value: 12.5
+ volumeSliceCount:
+ m_OverrideState: 0
+ m_Value: 64
+ m_VolumetricFogBudget:
+ m_OverrideState: 0
+ m_Value: 0.33
+ m_ResolutionDepthRatio:
+ m_OverrideState: 0
+ m_Value: 0.666
+ directionalLightsOnly:
+ m_OverrideState: 0
+ m_Value: 0
+--- !u!114 &11400000
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
+ m_Name: SkyandFogSettingsProfile
+ m_EditorClassIdentifier:
+ components:
+ - {fileID: 1142777632297148762}
+ - {fileID: -7724654706381055090}
+ - {fileID: -4151792930034644520}
+ - {fileID: 7642060734654139733}
+--- !u!114 &1142777632297148762
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 0d7593b3a9277ac4696b20006c21dde2, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ active: 1
+ skyType:
+ m_OverrideState: 1
+ m_Value: 4
+ cloudType:
+ m_OverrideState: 0
+ m_Value: 0
+ skyAmbientMode:
+ m_OverrideState: 1
+ m_Value: 0
+ planetRadius:
+ m_OverrideState: 0
+ m_Value: 6378.1
+ renderingSpace:
+ m_OverrideState: 0
+ m_Value: 1
+ centerMode:
+ m_OverrideState: 0
+ m_Value: 0
+ planetCenter:
+ m_OverrideState: 0
+ m_Value: {x: 0, y: -6378.1, z: 0}
+ windOrientation:
+ m_OverrideState: 0
+ m_Value: 0
+ windSpeed:
+ m_OverrideState: 0
+ m_Value: 0
+ fogType:
+ m_OverrideState: 1
+ m_Value: 0
+ m_Version: 1
+--- !u!114 &7642060734654139733
+MonoBehaviour:
+ m_ObjectHideFlags: 3
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 2d08ce26990eb1a4a9177b860541e702, type: 3}
+ m_Name: Exposure
+ m_EditorClassIdentifier:
+ active: 1
+ mode:
+ m_OverrideState: 1
+ m_Value: 4
+ meteringMode:
+ m_OverrideState: 0
+ m_Value: 2
+ luminanceSource:
+ m_OverrideState: 0
+ m_Value: 1
+ fixedExposure:
+ m_OverrideState: 0
+ m_Value: 0
+ compensation:
+ m_OverrideState: 0
+ m_Value: 0
+ limitMin:
+ m_OverrideState: 1
+ m_Value: 2
+ limitMax:
+ m_OverrideState: 1
+ m_Value: 14
+ curveMap:
+ m_OverrideState: 0
+ m_Value:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: -10
+ value: -10
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 20
+ value: 20
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ limitMinCurveMap:
+ m_OverrideState: 0
+ m_Value:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: -10
+ value: -12
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 20
+ value: 18
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ limitMaxCurveMap:
+ m_OverrideState: 0
+ m_Value:
+ serializedVersion: 2
+ m_Curve:
+ - serializedVersion: 3
+ time: -10
+ value: -8
+ inSlope: 0
+ outSlope: 1
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ - serializedVersion: 3
+ time: 20
+ value: 22
+ inSlope: 1
+ outSlope: 0
+ tangentMode: 0
+ weightedMode: 0
+ inWeight: 0
+ outWeight: 0
+ m_PreInfinity: 2
+ m_PostInfinity: 2
+ m_RotationOrder: 4
+ adaptationMode:
+ m_OverrideState: 0
+ m_Value: 1
+ adaptationSpeedDarkToLight:
+ m_OverrideState: 0
+ m_Value: 3
+ adaptationSpeedLightToDark:
+ m_OverrideState: 0
+ m_Value: 1
+ weightTextureMask:
+ m_OverrideState: 0
+ m_Value: {fileID: 0}
+ histogramPercentages:
+ m_OverrideState: 0
+ m_Value: {x: 40, y: 90}
+ histogramUseCurveRemapping:
+ m_OverrideState: 0
+ m_Value: 0
+ targetMidGray:
+ m_OverrideState: 0
+ m_Value: 0
+ centerAroundExposureTarget:
+ m_OverrideState: 0
+ m_Value: 0
+ proceduralCenter:
+ m_OverrideState: 0
+ m_Value: {x: 0.5, y: 0.5}
+ proceduralRadii:
+ m_OverrideState: 0
+ m_Value: {x: 0.15, y: 0.15}
+ maskMinIntensity:
+ m_OverrideState: 0
+ m_Value: -30
+ maskMaxIntensity:
+ m_OverrideState: 0
+ m_Value: 30
+ proceduralSoftness:
+ m_OverrideState: 0
+ m_Value: 0.5
diff --git a/Assets/Settings/SkyandFogSettingsProfile.asset.meta b/Assets/Settings/SkyandFogSettingsProfile.asset.meta
new file mode 100644
index 0000000..ab1b028
--- /dev/null
+++ b/Assets/Settings/SkyandFogSettingsProfile.asset.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: 8ba92e2dd7f884a0f88b98fa2d235fe7
+NativeFormatImporter:
+ externalObjects: {}
+ mainObjectFileID: 11400000
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/test scene.unity b/Assets/test scene.unity
new file mode 100644
index 0000000..61aa1db
--- /dev/null
+++ b/Assets/test scene.unity
@@ -0,0 +1,571 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!29 &1
+OcclusionCullingSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_OcclusionBakeSettings:
+ smallestOccluder: 5
+ smallestHole: 0.25
+ backfaceThreshold: 100
+ m_SceneGUID: 00000000000000000000000000000000
+ m_OcclusionCullingData: {fileID: 0}
+--- !u!104 &2
+RenderSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 10
+ m_Fog: 0
+ m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
+ m_FogMode: 3
+ m_FogDensity: 0.01
+ m_LinearFogStart: 0
+ m_LinearFogEnd: 300
+ m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
+ m_AmbientIntensity: 1
+ m_AmbientMode: 0
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
+ m_SkyboxMaterial: {fileID: 0}
+ m_HaloStrength: 0.5
+ m_FlareStrength: 1
+ m_FlareFadeSpeed: 3
+ m_HaloTexture: {fileID: 0}
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
+ m_DefaultReflectionMode: 0
+ m_DefaultReflectionResolution: 128
+ m_ReflectionBounces: 1
+ m_ReflectionIntensity: 1
+ m_CustomReflection: {fileID: 0}
+ m_Sun: {fileID: 0}
+ m_UseRadianceAmbientProbe: 0
+--- !u!157 &3
+LightmapSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 13
+ m_BakeOnSceneLoad: 0
+ m_GISettings:
+ serializedVersion: 2
+ m_BounceScale: 1
+ m_IndirectOutputScale: 1
+ m_AlbedoBoost: 1
+ m_EnvironmentLightingMode: 0
+ m_EnableBakedLightmaps: 1
+ m_EnableRealtimeLightmaps: 0
+ m_LightmapEditorSettings:
+ serializedVersion: 12
+ m_Resolution: 2
+ m_BakeResolution: 40
+ m_AtlasSize: 1024
+ m_AO: 0
+ m_AOMaxDistance: 1
+ m_CompAOExponent: 1
+ m_CompAOExponentDirect: 0
+ m_ExtractAmbientOcclusion: 0
+ m_Padding: 2
+ m_LightmapParameters: {fileID: 0}
+ m_LightmapsBakeMode: 1
+ m_TextureCompression: 1
+ m_ReflectionCompression: 2
+ m_MixedBakeMode: 2
+ m_BakeBackend: 1
+ m_PVRSampling: 1
+ m_PVRDirectSampleCount: 32
+ m_PVRSampleCount: 512
+ m_PVRBounces: 2
+ m_PVREnvironmentSampleCount: 256
+ m_PVREnvironmentReferencePointCount: 2048
+ m_PVRFilteringMode: 1
+ m_PVRDenoiserTypeDirect: 1
+ m_PVRDenoiserTypeIndirect: 1
+ m_PVRDenoiserTypeAO: 1
+ m_PVRFilterTypeDirect: 0
+ m_PVRFilterTypeIndirect: 0
+ m_PVRFilterTypeAO: 0
+ m_PVREnvironmentMIS: 1
+ m_PVRCulling: 1
+ m_PVRFilteringGaussRadiusDirect: 1
+ m_PVRFilteringGaussRadiusIndirect: 1
+ m_PVRFilteringGaussRadiusAO: 1
+ m_PVRFilteringAtrousPositionSigmaDirect: 0.5
+ m_PVRFilteringAtrousPositionSigmaIndirect: 2
+ m_PVRFilteringAtrousPositionSigmaAO: 1
+ m_ExportTrainingData: 0
+ m_TrainingDataDestination: TrainingData
+ m_LightProbeSampleCountMultiplier: 4
+ m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0}
+ m_LightingSettings: {fileID: 0}
+--- !u!196 &4
+NavMeshSettings:
+ serializedVersion: 2
+ m_ObjectHideFlags: 0
+ m_BuildSettings:
+ serializedVersion: 3
+ agentTypeID: 0
+ agentRadius: 0.5
+ agentHeight: 2
+ agentSlope: 45
+ agentClimb: 0.4
+ ledgeDropHeight: 0
+ maxJumpAcrossDistance: 0
+ minRegionArea: 2
+ manualCellSize: 0
+ cellSize: 0.16666667
+ manualTileSize: 0
+ tileSize: 256
+ buildHeightMesh: 0
+ maxJobWorkers: 0
+ preserveTilesOutsideBounds: 0
+ debug:
+ m_Flags: 0
+ m_NavMeshData: {fileID: 0}
+--- !u!1 &191743109
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 191743113}
+ - component: {fileID: 191743112}
+ - component: {fileID: 191743111}
+ - component: {fileID: 191743110}
+ m_Layer: 0
+ m_Name: test
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!65 &191743110
+BoxCollider:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 191743109}
+ m_Material: {fileID: 0}
+ m_IncludeLayers:
+ serializedVersion: 2
+ m_Bits: 0
+ m_ExcludeLayers:
+ serializedVersion: 2
+ m_Bits: 0
+ m_LayerOverridePriority: 0
+ m_IsTrigger: 0
+ m_ProvidesContacts: 0
+ m_Enabled: 1
+ serializedVersion: 3
+ m_Size: {x: 1, y: 1, z: 1}
+ m_Center: {x: 0, y: 0, z: 0}
+--- !u!23 &191743111
+MeshRenderer:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 191743109}
+ m_Enabled: 1
+ m_CastShadows: 1
+ m_ReceiveShadows: 1
+ m_DynamicOccludee: 1
+ m_StaticShadowCaster: 0
+ m_MotionVectors: 1
+ m_LightProbeUsage: 1
+ m_ReflectionProbeUsage: 1
+ m_RayTracingMode: 2
+ m_RayTraceProcedural: 0
+ m_RayTracingAccelStructBuildFlagsOverride: 0
+ m_RayTracingAccelStructBuildFlags: 1
+ m_SmallMeshCulling: 1
+ m_ForceMeshLod: -1
+ m_MeshLodSelectionBias: 0
+ m_RenderingLayerMask: 1
+ m_RendererPriority: 0
+ m_Materials:
+ - {fileID: 2100000, guid: 73c176f402d2c2f4d929aa5da7585d17, type: 2}
+ m_StaticBatchInfo:
+ firstSubMesh: 0
+ subMeshCount: 0
+ m_StaticBatchRoot: {fileID: 0}
+ m_ProbeAnchor: {fileID: 0}
+ m_LightProbeVolumeOverride: {fileID: 0}
+ m_ScaleInLightmap: 1
+ m_ReceiveGI: 1
+ m_PreserveUVs: 0
+ m_IgnoreNormalsForChartDetection: 0
+ m_ImportantGI: 0
+ m_StitchLightmapSeams: 1
+ m_SelectedEditorRenderState: 3
+ m_MinimumChartSize: 4
+ m_AutoUVMaxDistance: 0.5
+ m_AutoUVMaxAngle: 89
+ m_LightmapParameters: {fileID: 0}
+ m_GlobalIlluminationMeshLod: 0
+ m_SortingLayerID: 0
+ m_SortingLayer: 0
+ m_SortingOrder: 0
+ m_AdditionalVertexStreams: {fileID: 0}
+--- !u!33 &191743112
+MeshFilter:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 191743109}
+ m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
+--- !u!4 &191743113
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 191743109}
+ serializedVersion: 2
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0.5, y: 0.35, z: 0.5}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_ConstrainProportionsScale: 0
+ m_Children: []
+ m_Father: {fileID: 0}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1 &1250028562
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1250028565}
+ - component: {fileID: 1250028564}
+ - component: {fileID: 1250028563}
+ m_Layer: 0
+ m_Name: Directional Light
+ m_TagString: Untagged
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!114 &1250028563
+MonoBehaviour:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1250028562}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 7a68c43fe1f2a47cfa234b5eeaa98012, type: 3}
+ m_Name:
+ m_EditorClassIdentifier: Unity.RenderPipelines.HighDefinition.Runtime::UnityEngine.Rendering.HighDefinition.HDAdditionalLightData
+ m_PointlightHDType: 0
+ m_SpotLightShape: 0
+ m_AreaLightShape: 0
+ m_EnableSpotReflector: 1
+ m_LightUnit: 0
+ m_LuxAtDistance: 1
+ m_Intensity: 0
+ m_InnerSpotPercent: 0
+ m_SpotIESCutoffPercent: 100
+ m_LightDimmer: 1
+ m_VolumetricDimmer: 1
+ m_FadeDistance: 10000
+ m_VolumetricFadeDistance: 10000
+ m_AffectDiffuse: 1
+ m_AffectSpecular: 1
+ m_NonLightmappedOnly: 0
+ m_ShapeWidth: 0.5
+ m_ShapeHeight: 0.5
+ m_AspectRatio: 1
+ m_ShapeRadius: 0.025
+ m_SoftnessScale: 1
+ m_UseCustomSpotLightShadowCone: 0
+ m_CustomSpotLightShadowCone: 30
+ m_MaxSmoothness: 0.99
+ m_ApplyRangeAttenuation: 1
+ m_DisplayAreaLightEmissiveMesh: 0
+ m_AreaLightCookie: {fileID: 0}
+ m_IESPoint: {fileID: 0}
+ m_IESSpot: {fileID: 0}
+ m_IncludeForRayTracing: 1
+ m_IncludeForPathTracing: 1
+ m_AreaLightShadowCone: 120
+ m_UseScreenSpaceShadows: 0
+ m_InteractsWithSky: 1
+ m_AngularDiameter: 0.5
+ diameterMultiplerMode: 0
+ diameterMultiplier: 1
+ diameterOverride: 0.5
+ celestialBodyShadingSource: 1
+ sunLightOverride: {fileID: 0}
+ sunColor: {r: 1, g: 1, b: 1, a: 1}
+ sunIntensity: 130000
+ moonPhase: 0.2
+ moonPhaseRotation: 0
+ earthshine: 1
+ flareSize: 2
+ flareTint: {r: 1, g: 1, b: 1, a: 1}
+ flareFalloff: 4
+ flareMultiplier: 1
+ surfaceTexture: {fileID: 0}
+ surfaceTint: {r: 1, g: 1, b: 1, a: 1}
+ m_Distance: 1.5e+11
+ m_UseRayTracedShadows: 0
+ m_NumRayTracingSamples: 4
+ m_FilterTracedShadow: 1
+ m_FilterSizeTraced: 16
+ m_SunLightConeAngle: 0.5
+ m_LightShadowRadius: 0.5
+ m_SemiTransparentShadow: 0
+ m_ColorShadow: 1
+ m_DistanceBasedFiltering: 0
+ m_EvsmExponent: 15
+ m_EvsmLightLeakBias: 0
+ m_EvsmVarianceBias: 0.00001
+ m_EvsmBlurPasses: 0
+ m_LightlayersMask: 1
+ m_LinkShadowLayers: 1
+ m_ShadowNearPlane: 0.1
+ m_BlockerSampleCount: 24
+ m_FilterSampleCount: 16
+ m_MinFilterSize: 0.1
+ m_DirLightPCSSBlockerSampleCount: 24
+ m_DirLightPCSSFilterSampleCount: 16
+ m_DirLightPCSSMaxPenumbraSize: 0.56
+ m_DirLightPCSSMaxSamplingDistance: 0.5
+ m_DirLightPCSSMinFilterSizeTexels: 1.5
+ m_DirLightPCSSMinFilterMaxAngularDiameter: 10
+ m_DirLightPCSSBlockerSearchAngularDiameter: 12
+ m_DirLightPCSSBlockerSamplingClumpExponent: 2
+ m_KernelSize: 5
+ m_LightAngle: 1
+ m_MaxDepthBias: 0.001
+ m_ShadowResolution:
+ m_Override: 512
+ m_UseOverride: 1
+ m_Level: 0
+ m_ShadowDimmer: 1
+ m_VolumetricShadowDimmer: 1
+ m_ShadowFadeDistance: 10000
+ m_UseContactShadow:
+ m_Override: 0
+ m_UseOverride: 1
+ m_Level: 0
+ m_RayTracedContactShadow: 0
+ m_ShadowTint: {r: 0, g: 0, b: 0, a: 1}
+ m_PenumbraTint: 0
+ m_NormalBias: 0.75
+ m_SlopeBias: 0.5
+ m_ShadowUpdateMode: 0
+ m_AlwaysDrawDynamicShadows: 0
+ m_UpdateShadowOnLightMovement: 0
+ m_CachedShadowTranslationThreshold: 0.01
+ m_CachedShadowAngularThreshold: 0.5
+ m_BarnDoorAngle: 90
+ m_BarnDoorLength: 0.05
+ m_preserveCachedShadow: 0
+ m_OnDemandShadowRenderOnPlacement: 1
+ m_ShadowCascadeRatios:
+ - 0.05
+ - 0.2
+ - 0.3
+ m_ShadowCascadeBorders:
+ - 0.2
+ - 0.2
+ - 0.2
+ - 0.2
+ m_ShadowAlgorithm: 0
+ m_ShadowVariant: 0
+ m_ShadowPrecision: 0
+ useOldInspector: 0
+ useVolumetric: 1
+ featuresFoldout: 1
+ m_AreaLightEmissiveMeshShadowCastingMode: 0
+ m_AreaLightEmissiveMeshMotionVectorGenerationMode: 0
+ m_AreaLightEmissiveMeshLayer: -1
+ m_Version: 13
+ m_ObsoleteShadowResolutionTier: 1
+ m_ObsoleteUseShadowQualitySettings: 0
+ m_ObsoleteCustomShadowResolution: 512
+ m_ObsoleteContactShadows: 0
+--- !u!108 &1250028564
+Light:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1250028562}
+ m_Enabled: 1
+ serializedVersion: 11
+ m_Type: 1
+ m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1}
+ m_Intensity: 100000
+ m_Range: 10
+ m_SpotAngle: 30
+ m_InnerSpotAngle: 21.80208
+ m_CookieSize: 10
+ m_Shadows:
+ m_Type: 2
+ m_Resolution: -1
+ m_CustomResolution: -1
+ m_Strength: 1
+ m_Bias: 0.05
+ m_NormalBias: 0.4
+ m_NearPlane: 0.2
+ m_CullingMatrixOverride:
+ e00: 1
+ e01: 0
+ e02: 0
+ e03: 0
+ e10: 0
+ e11: 1
+ e12: 0
+ e13: 0
+ e20: 0
+ e21: 0
+ e22: 1
+ e23: 0
+ e30: 0
+ e31: 0
+ e32: 0
+ e33: 1
+ m_UseCullingMatrixOverride: 0
+ m_Cookie: {fileID: 0}
+ m_DrawHalo: 0
+ m_Flare: {fileID: 0}
+ m_RenderMode: 0
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_RenderingLayerMask: 1
+ m_Lightmapping: 4
+ m_LightShadowCasterMode: 2
+ m_AreaSize: {x: 1, y: 1}
+ m_BounceIntensity: 1
+ m_ColorTemperature: 6570
+ m_UseColorTemperature: 1
+ m_BoundingSphereOverride: {x: 5.0666015e-20, y: 1.05e-43, z: 2.783e-42, w: 2.8131285e+20}
+ m_UseBoundingSphereOverride: 0
+ m_UseViewFrustumForShadowCasterCull: 1
+ m_ForceVisible: 0
+ m_ShadowRadius: 0
+ m_ShadowAngle: 0
+ m_LightUnit: 2
+ m_LuxAtDistance: 1
+ m_EnableSpotReflector: 1
+--- !u!4 &1250028565
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1250028562}
+ serializedVersion: 2
+ m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
+ m_LocalPosition: {x: 0, y: 3, z: 0}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_ConstrainProportionsScale: 0
+ m_Children: []
+ m_Father: {fileID: 0}
+ m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
+--- !u!1 &1380485723
+GameObject:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ serializedVersion: 6
+ m_Component:
+ - component: {fileID: 1380485726}
+ - component: {fileID: 1380485725}
+ - component: {fileID: 1380485724}
+ m_Layer: 0
+ m_Name: Main Camera
+ m_TagString: MainCamera
+ m_Icon: {fileID: 0}
+ m_NavMeshLayer: 0
+ m_StaticEditorFlags: 0
+ m_IsActive: 1
+--- !u!81 &1380485724
+AudioListener:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1380485723}
+ m_Enabled: 1
+--- !u!20 &1380485725
+Camera:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1380485723}
+ m_Enabled: 1
+ serializedVersion: 2
+ m_ClearFlags: 1
+ m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0}
+ m_projectionMatrixMode: 1
+ m_GateFitMode: 2
+ m_FOVAxisMode: 0
+ m_Iso: 200
+ m_ShutterSpeed: 0.005
+ m_Aperture: 16
+ m_FocusDistance: 10
+ m_FocalLength: 50
+ m_BladeCount: 5
+ m_Curvature: {x: 2, y: 11}
+ m_BarrelClipping: 0.25
+ m_Anamorphism: 0
+ m_SensorSize: {x: 36, y: 24}
+ m_LensShift: {x: 0, y: 0}
+ m_NormalizedViewPortRect:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ near clip plane: 0.3
+ far clip plane: 1000
+ field of view: 60
+ orthographic: 0
+ orthographic size: 5
+ m_Depth: -1
+ m_CullingMask:
+ serializedVersion: 2
+ m_Bits: 4294967295
+ m_RenderingPath: -1
+ m_TargetTexture: {fileID: 0}
+ m_TargetDisplay: 0
+ m_TargetEye: 3
+ m_HDR: 1
+ m_AllowMSAA: 1
+ m_AllowDynamicResolution: 0
+ m_ForceIntoRT: 0
+ m_OcclusionCulling: 1
+ m_StereoConvergence: 10
+ m_StereoSeparation: 0.022
+--- !u!4 &1380485726
+Transform:
+ m_ObjectHideFlags: 0
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 1380485723}
+ serializedVersion: 2
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
+ m_LocalPosition: {x: 0, y: 1, z: -10}
+ m_LocalScale: {x: 1, y: 1, z: 1}
+ m_ConstrainProportionsScale: 0
+ m_Children: []
+ m_Father: {fileID: 0}
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
+--- !u!1660057539 &9223372036854775807
+SceneRoots:
+ m_ObjectHideFlags: 0
+ m_Roots:
+ - {fileID: 1380485726}
+ - {fileID: 1250028565}
+ - {fileID: 191743113}
diff --git a/Assets/test scene.unity.meta b/Assets/test scene.unity.meta
new file mode 100644
index 0000000..6c58637
--- /dev/null
+++ b/Assets/test scene.unity.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 06b4a0068ee3f434aa1e34ad5c1b9958
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index 0ad25db..0000000
--- a/LICENSE
+++ /dev/null
@@ -1,661 +0,0 @@
- GNU AFFERO GENERAL PUBLIC LICENSE
- Version 3, 19 November 2007
-
- Copyright (C) 2007 Free Software Foundation, Inc.
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The GNU Affero General Public License is a free, copyleft license for
-software and other kinds of works, specifically designed to ensure
-cooperation with the community in the case of network server software.
-
- The licenses for most software and other practical works are designed
-to take away your freedom to share and change the works. By contrast,
-our General Public Licenses are intended to guarantee your freedom to
-share and change all versions of a program--to make sure it remains free
-software for all its users.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-them if you wish), that you receive source code or can get it if you
-want it, that you can change the software or use pieces of it in new
-free programs, and that you know you can do these things.
-
- Developers that use our General Public Licenses protect your rights
-with two steps: (1) assert copyright on the software, and (2) offer
-you this License which gives you legal permission to copy, distribute
-and/or modify the software.
-
- A secondary benefit of defending all users' freedom is that
-improvements made in alternate versions of the program, if they
-receive widespread use, become available for other developers to
-incorporate. Many developers of free software are heartened and
-encouraged by the resulting cooperation. However, in the case of
-software used on network servers, this result may fail to come about.
-The GNU General Public License permits making a modified version and
-letting the public access it on a server without ever releasing its
-source code to the public.
-
- The GNU Affero General Public License is designed specifically to
-ensure that, in such cases, the modified source code becomes available
-to the community. It requires the operator of a network server to
-provide the source code of the modified version running there to the
-users of that server. Therefore, public use of a modified version, on
-a publicly accessible server, gives the public access to the source
-code of the modified version.
-
- An older license, called the Affero General Public License and
-published by Affero, was designed to accomplish similar goals. This is
-a different license, not a version of the Affero GPL, but Affero has
-released a new version of the Affero GPL which permits relicensing under
-this license.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-
- TERMS AND CONDITIONS
-
- 0. Definitions.
-
- "This License" refers to version 3 of the GNU Affero General Public License.
-
- "Copyright" also means copyright-like laws that apply to other kinds of
-works, such as semiconductor masks.
-
- "The Program" refers to any copyrightable work licensed under this
-License. Each licensee is addressed as "you". "Licensees" and
-"recipients" may be individuals or organizations.
-
- To "modify" a work means to copy from or adapt all or part of the work
-in a fashion requiring copyright permission, other than the making of an
-exact copy. The resulting work is called a "modified version" of the
-earlier work or a work "based on" the earlier work.
-
- A "covered work" means either the unmodified Program or a work based
-on the Program.
-
- To "propagate" a work means to do anything with it that, without
-permission, would make you directly or secondarily liable for
-infringement under applicable copyright law, except executing it on a
-computer or modifying a private copy. Propagation includes copying,
-distribution (with or without modification), making available to the
-public, and in some countries other activities as well.
-
- To "convey" a work means any kind of propagation that enables other
-parties to make or receive copies. Mere interaction with a user through
-a computer network, with no transfer of a copy, is not conveying.
-
- An interactive user interface displays "Appropriate Legal Notices"
-to the extent that it includes a convenient and prominently visible
-feature that (1) displays an appropriate copyright notice, and (2)
-tells the user that there is no warranty for the work (except to the
-extent that warranties are provided), that licensees may convey the
-work under this License, and how to view a copy of this License. If
-the interface presents a list of user commands or options, such as a
-menu, a prominent item in the list meets this criterion.
-
- 1. Source Code.
-
- The "source code" for a work means the preferred form of the work
-for making modifications to it. "Object code" means any non-source
-form of a work.
-
- A "Standard Interface" means an interface that either is an official
-standard defined by a recognized standards body, or, in the case of
-interfaces specified for a particular programming language, one that
-is widely used among developers working in that language.
-
- The "System Libraries" of an executable work include anything, other
-than the work as a whole, that (a) is included in the normal form of
-packaging a Major Component, but which is not part of that Major
-Component, and (b) serves only to enable use of the work with that
-Major Component, or to implement a Standard Interface for which an
-implementation is available to the public in source code form. A
-"Major Component", in this context, means a major essential component
-(kernel, window system, and so on) of the specific operating system
-(if any) on which the executable work runs, or a compiler used to
-produce the work, or an object code interpreter used to run it.
-
- The "Corresponding Source" for a work in object code form means all
-the source code needed to generate, install, and (for an executable
-work) run the object code and to modify the work, including scripts to
-control those activities. However, it does not include the work's
-System Libraries, or general-purpose tools or generally available free
-programs which are used unmodified in performing those activities but
-which are not part of the work. For example, Corresponding Source
-includes interface definition files associated with source files for
-the work, and the source code for shared libraries and dynamically
-linked subprograms that the work is specifically designed to require,
-such as by intimate data communication or control flow between those
-subprograms and other parts of the work.
-
- The Corresponding Source need not include anything that users
-can regenerate automatically from other parts of the Corresponding
-Source.
-
- The Corresponding Source for a work in source code form is that
-same work.
-
- 2. Basic Permissions.
-
- All rights granted under this License are granted for the term of
-copyright on the Program, and are irrevocable provided the stated
-conditions are met. This License explicitly affirms your unlimited
-permission to run the unmodified Program. The output from running a
-covered work is covered by this License only if the output, given its
-content, constitutes a covered work. This License acknowledges your
-rights of fair use or other equivalent, as provided by copyright law.
-
- You may make, run and propagate covered works that you do not
-convey, without conditions so long as your license otherwise remains
-in force. You may convey covered works to others for the sole purpose
-of having them make modifications exclusively for you, or provide you
-with facilities for running those works, provided that you comply with
-the terms of this License in conveying all material for which you do
-not control copyright. Those thus making or running the covered works
-for you must do so exclusively on your behalf, under your direction
-and control, on terms that prohibit them from making any copies of
-your copyrighted material outside their relationship with you.
-
- Conveying under any other circumstances is permitted solely under
-the conditions stated below. Sublicensing is not allowed; section 10
-makes it unnecessary.
-
- 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
-
- No covered work shall be deemed part of an effective technological
-measure under any applicable law fulfilling obligations under article
-11 of the WIPO copyright treaty adopted on 20 December 1996, or
-similar laws prohibiting or restricting circumvention of such
-measures.
-
- When you convey a covered work, you waive any legal power to forbid
-circumvention of technological measures to the extent such circumvention
-is effected by exercising rights under this License with respect to
-the covered work, and you disclaim any intention to limit operation or
-modification of the work as a means of enforcing, against the work's
-users, your or third parties' legal rights to forbid circumvention of
-technological measures.
-
- 4. Conveying Verbatim Copies.
-
- You may convey verbatim copies of the Program's source code as you
-receive it, in any medium, provided that you conspicuously and
-appropriately publish on each copy an appropriate copyright notice;
-keep intact all notices stating that this License and any
-non-permissive terms added in accord with section 7 apply to the code;
-keep intact all notices of the absence of any warranty; and give all
-recipients a copy of this License along with the Program.
-
- You may charge any price or no price for each copy that you convey,
-and you may offer support or warranty protection for a fee.
-
- 5. Conveying Modified Source Versions.
-
- You may convey a work based on the Program, or the modifications to
-produce it from the Program, in the form of source code under the
-terms of section 4, provided that you also meet all of these conditions:
-
- a) The work must carry prominent notices stating that you modified
- it, and giving a relevant date.
-
- b) The work must carry prominent notices stating that it is
- released under this License and any conditions added under section
- 7. This requirement modifies the requirement in section 4 to
- "keep intact all notices".
-
- c) You must license the entire work, as a whole, under this
- License to anyone who comes into possession of a copy. This
- License will therefore apply, along with any applicable section 7
- additional terms, to the whole of the work, and all its parts,
- regardless of how they are packaged. This License gives no
- permission to license the work in any other way, but it does not
- invalidate such permission if you have separately received it.
-
- d) If the work has interactive user interfaces, each must display
- Appropriate Legal Notices; however, if the Program has interactive
- interfaces that do not display Appropriate Legal Notices, your
- work need not make them do so.
-
- A compilation of a covered work with other separate and independent
-works, which are not by their nature extensions of the covered work,
-and which are not combined with it such as to form a larger program,
-in or on a volume of a storage or distribution medium, is called an
-"aggregate" if the compilation and its resulting copyright are not
-used to limit the access or legal rights of the compilation's users
-beyond what the individual works permit. Inclusion of a covered work
-in an aggregate does not cause this License to apply to the other
-parts of the aggregate.
-
- 6. Conveying Non-Source Forms.
-
- You may convey a covered work in object code form under the terms
-of sections 4 and 5, provided that you also convey the
-machine-readable Corresponding Source under the terms of this License,
-in one of these ways:
-
- a) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by the
- Corresponding Source fixed on a durable physical medium
- customarily used for software interchange.
-
- b) Convey the object code in, or embodied in, a physical product
- (including a physical distribution medium), accompanied by a
- written offer, valid for at least three years and valid for as
- long as you offer spare parts or customer support for that product
- model, to give anyone who possesses the object code either (1) a
- copy of the Corresponding Source for all the software in the
- product that is covered by this License, on a durable physical
- medium customarily used for software interchange, for a price no
- more than your reasonable cost of physically performing this
- conveying of source, or (2) access to copy the
- Corresponding Source from a network server at no charge.
-
- c) Convey individual copies of the object code with a copy of the
- written offer to provide the Corresponding Source. This
- alternative is allowed only occasionally and noncommercially, and
- only if you received the object code with such an offer, in accord
- with subsection 6b.
-
- d) Convey the object code by offering access from a designated
- place (gratis or for a charge), and offer equivalent access to the
- Corresponding Source in the same way through the same place at no
- further charge. You need not require recipients to copy the
- Corresponding Source along with the object code. If the place to
- copy the object code is a network server, the Corresponding Source
- may be on a different server (operated by you or a third party)
- that supports equivalent copying facilities, provided you maintain
- clear directions next to the object code saying where to find the
- Corresponding Source. Regardless of what server hosts the
- Corresponding Source, you remain obligated to ensure that it is
- available for as long as needed to satisfy these requirements.
-
- e) Convey the object code using peer-to-peer transmission, provided
- you inform other peers where the object code and Corresponding
- Source of the work are being offered to the general public at no
- charge under subsection 6d.
-
- A separable portion of the object code, whose source code is excluded
-from the Corresponding Source as a System Library, need not be
-included in conveying the object code work.
-
- A "User Product" is either (1) a "consumer product", which means any
-tangible personal property which is normally used for personal, family,
-or household purposes, or (2) anything designed or sold for incorporation
-into a dwelling. In determining whether a product is a consumer product,
-doubtful cases shall be resolved in favor of coverage. For a particular
-product received by a particular user, "normally used" refers to a
-typical or common use of that class of product, regardless of the status
-of the particular user or of the way in which the particular user
-actually uses, or expects or is expected to use, the product. A product
-is a consumer product regardless of whether the product has substantial
-commercial, industrial or non-consumer uses, unless such uses represent
-the only significant mode of use of the product.
-
- "Installation Information" for a User Product means any methods,
-procedures, authorization keys, or other information required to install
-and execute modified versions of a covered work in that User Product from
-a modified version of its Corresponding Source. The information must
-suffice to ensure that the continued functioning of the modified object
-code is in no case prevented or interfered with solely because
-modification has been made.
-
- If you convey an object code work under this section in, or with, or
-specifically for use in, a User Product, and the conveying occurs as
-part of a transaction in which the right of possession and use of the
-User Product is transferred to the recipient in perpetuity or for a
-fixed term (regardless of how the transaction is characterized), the
-Corresponding Source conveyed under this section must be accompanied
-by the Installation Information. But this requirement does not apply
-if neither you nor any third party retains the ability to install
-modified object code on the User Product (for example, the work has
-been installed in ROM).
-
- The requirement to provide Installation Information does not include a
-requirement to continue to provide support service, warranty, or updates
-for a work that has been modified or installed by the recipient, or for
-the User Product in which it has been modified or installed. Access to a
-network may be denied when the modification itself materially and
-adversely affects the operation of the network or violates the rules and
-protocols for communication across the network.
-
- Corresponding Source conveyed, and Installation Information provided,
-in accord with this section must be in a format that is publicly
-documented (and with an implementation available to the public in
-source code form), and must require no special password or key for
-unpacking, reading or copying.
-
- 7. Additional Terms.
-
- "Additional permissions" are terms that supplement the terms of this
-License by making exceptions from one or more of its conditions.
-Additional permissions that are applicable to the entire Program shall
-be treated as though they were included in this License, to the extent
-that they are valid under applicable law. If additional permissions
-apply only to part of the Program, that part may be used separately
-under those permissions, but the entire Program remains governed by
-this License without regard to the additional permissions.
-
- When you convey a copy of a covered work, you may at your option
-remove any additional permissions from that copy, or from any part of
-it. (Additional permissions may be written to require their own
-removal in certain cases when you modify the work.) You may place
-additional permissions on material, added by you to a covered work,
-for which you have or can give appropriate copyright permission.
-
- Notwithstanding any other provision of this License, for material you
-add to a covered work, you may (if authorized by the copyright holders of
-that material) supplement the terms of this License with terms:
-
- a) Disclaiming warranty or limiting liability differently from the
- terms of sections 15 and 16 of this License; or
-
- b) Requiring preservation of specified reasonable legal notices or
- author attributions in that material or in the Appropriate Legal
- Notices displayed by works containing it; or
-
- c) Prohibiting misrepresentation of the origin of that material, or
- requiring that modified versions of such material be marked in
- reasonable ways as different from the original version; or
-
- d) Limiting the use for publicity purposes of names of licensors or
- authors of the material; or
-
- e) Declining to grant rights under trademark law for use of some
- trade names, trademarks, or service marks; or
-
- f) Requiring indemnification of licensors and authors of that
- material by anyone who conveys the material (or modified versions of
- it) with contractual assumptions of liability to the recipient, for
- any liability that these contractual assumptions directly impose on
- those licensors and authors.
-
- All other non-permissive additional terms are considered "further
-restrictions" within the meaning of section 10. If the Program as you
-received it, or any part of it, contains a notice stating that it is
-governed by this License along with a term that is a further
-restriction, you may remove that term. If a license document contains
-a further restriction but permits relicensing or conveying under this
-License, you may add to a covered work material governed by the terms
-of that license document, provided that the further restriction does
-not survive such relicensing or conveying.
-
- If you add terms to a covered work in accord with this section, you
-must place, in the relevant source files, a statement of the
-additional terms that apply to those files, or a notice indicating
-where to find the applicable terms.
-
- Additional terms, permissive or non-permissive, may be stated in the
-form of a separately written license, or stated as exceptions;
-the above requirements apply either way.
-
- 8. Termination.
-
- You may not propagate or modify a covered work except as expressly
-provided under this License. Any attempt otherwise to propagate or
-modify it is void, and will automatically terminate your rights under
-this License (including any patent licenses granted under the third
-paragraph of section 11).
-
- However, if you cease all violation of this License, then your
-license from a particular copyright holder is reinstated (a)
-provisionally, unless and until the copyright holder explicitly and
-finally terminates your license, and (b) permanently, if the copyright
-holder fails to notify you of the violation by some reasonable means
-prior to 60 days after the cessation.
-
- Moreover, your license from a particular copyright holder is
-reinstated permanently if the copyright holder notifies you of the
-violation by some reasonable means, this is the first time you have
-received notice of violation of this License (for any work) from that
-copyright holder, and you cure the violation prior to 30 days after
-your receipt of the notice.
-
- Termination of your rights under this section does not terminate the
-licenses of parties who have received copies or rights from you under
-this License. If your rights have been terminated and not permanently
-reinstated, you do not qualify to receive new licenses for the same
-material under section 10.
-
- 9. Acceptance Not Required for Having Copies.
-
- You are not required to accept this License in order to receive or
-run a copy of the Program. Ancillary propagation of a covered work
-occurring solely as a consequence of using peer-to-peer transmission
-to receive a copy likewise does not require acceptance. However,
-nothing other than this License grants you permission to propagate or
-modify any covered work. These actions infringe copyright if you do
-not accept this License. Therefore, by modifying or propagating a
-covered work, you indicate your acceptance of this License to do so.
-
- 10. Automatic Licensing of Downstream Recipients.
-
- Each time you convey a covered work, the recipient automatically
-receives a license from the original licensors, to run, modify and
-propagate that work, subject to this License. You are not responsible
-for enforcing compliance by third parties with this License.
-
- An "entity transaction" is a transaction transferring control of an
-organization, or substantially all assets of one, or subdividing an
-organization, or merging organizations. If propagation of a covered
-work results from an entity transaction, each party to that
-transaction who receives a copy of the work also receives whatever
-licenses to the work the party's predecessor in interest had or could
-give under the previous paragraph, plus a right to possession of the
-Corresponding Source of the work from the predecessor in interest, if
-the predecessor has it or can get it with reasonable efforts.
-
- You may not impose any further restrictions on the exercise of the
-rights granted or affirmed under this License. For example, you may
-not impose a license fee, royalty, or other charge for exercise of
-rights granted under this License, and you may not initiate litigation
-(including a cross-claim or counterclaim in a lawsuit) alleging that
-any patent claim is infringed by making, using, selling, offering for
-sale, or importing the Program or any portion of it.
-
- 11. Patents.
-
- A "contributor" is a copyright holder who authorizes use under this
-License of the Program or a work on which the Program is based. The
-work thus licensed is called the contributor's "contributor version".
-
- A contributor's "essential patent claims" are all patent claims
-owned or controlled by the contributor, whether already acquired or
-hereafter acquired, that would be infringed by some manner, permitted
-by this License, of making, using, or selling its contributor version,
-but do not include claims that would be infringed only as a
-consequence of further modification of the contributor version. For
-purposes of this definition, "control" includes the right to grant
-patent sublicenses in a manner consistent with the requirements of
-this License.
-
- Each contributor grants you a non-exclusive, worldwide, royalty-free
-patent license under the contributor's essential patent claims, to
-make, use, sell, offer for sale, import and otherwise run, modify and
-propagate the contents of its contributor version.
-
- In the following three paragraphs, a "patent license" is any express
-agreement or commitment, however denominated, not to enforce a patent
-(such as an express permission to practice a patent or covenant not to
-sue for patent infringement). To "grant" such a patent license to a
-party means to make such an agreement or commitment not to enforce a
-patent against the party.
-
- If you convey a covered work, knowingly relying on a patent license,
-and the Corresponding Source of the work is not available for anyone
-to copy, free of charge and under the terms of this License, through a
-publicly available network server or other readily accessible means,
-then you must either (1) cause the Corresponding Source to be so
-available, or (2) arrange to deprive yourself of the benefit of the
-patent license for this particular work, or (3) arrange, in a manner
-consistent with the requirements of this License, to extend the patent
-license to downstream recipients. "Knowingly relying" means you have
-actual knowledge that, but for the patent license, your conveying the
-covered work in a country, or your recipient's use of the covered work
-in a country, would infringe one or more identifiable patents in that
-country that you have reason to believe are valid.
-
- If, pursuant to or in connection with a single transaction or
-arrangement, you convey, or propagate by procuring conveyance of, a
-covered work, and grant a patent license to some of the parties
-receiving the covered work authorizing them to use, propagate, modify
-or convey a specific copy of the covered work, then the patent license
-you grant is automatically extended to all recipients of the covered
-work and works based on it.
-
- A patent license is "discriminatory" if it does not include within
-the scope of its coverage, prohibits the exercise of, or is
-conditioned on the non-exercise of one or more of the rights that are
-specifically granted under this License. You may not convey a covered
-work if you are a party to an arrangement with a third party that is
-in the business of distributing software, under which you make payment
-to the third party based on the extent of your activity of conveying
-the work, and under which the third party grants, to any of the
-parties who would receive the covered work from you, a discriminatory
-patent license (a) in connection with copies of the covered work
-conveyed by you (or copies made from those copies), or (b) primarily
-for and in connection with specific products or compilations that
-contain the covered work, unless you entered into that arrangement,
-or that patent license was granted, prior to 28 March 2007.
-
- Nothing in this License shall be construed as excluding or limiting
-any implied license or other defenses to infringement that may
-otherwise be available to you under applicable patent law.
-
- 12. No Surrender of Others' Freedom.
-
- If conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot convey a
-covered work so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you may
-not convey it at all. For example, if you agree to terms that obligate you
-to collect a royalty for further conveying from those to whom you convey
-the Program, the only way you could satisfy both those terms and this
-License would be to refrain entirely from conveying the Program.
-
- 13. Remote Network Interaction; Use with the GNU General Public License.
-
- Notwithstanding any other provision of this License, if you modify the
-Program, your modified version must prominently offer all users
-interacting with it remotely through a computer network (if your version
-supports such interaction) an opportunity to receive the Corresponding
-Source of your version by providing access to the Corresponding Source
-from a network server at no charge, through some standard or customary
-means of facilitating copying of software. This Corresponding Source
-shall include the Corresponding Source for any work covered by version 3
-of the GNU General Public License that is incorporated pursuant to the
-following paragraph.
-
- Notwithstanding any other provision of this License, you have
-permission to link or combine any covered work with a work licensed
-under version 3 of the GNU General Public License into a single
-combined work, and to convey the resulting work. The terms of this
-License will continue to apply to the part which is the covered work,
-but the work with which it is combined will remain governed by version
-3 of the GNU General Public License.
-
- 14. Revised Versions of this License.
-
- The Free Software Foundation may publish revised and/or new versions of
-the GNU Affero General Public License from time to time. Such new versions
-will be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
- Each version is given a distinguishing version number. If the
-Program specifies that a certain numbered version of the GNU Affero General
-Public License "or any later version" applies to it, you have the
-option of following the terms and conditions either of that numbered
-version or of any later version published by the Free Software
-Foundation. If the Program does not specify a version number of the
-GNU Affero General Public License, you may choose any version ever published
-by the Free Software Foundation.
-
- If the Program specifies that a proxy can decide which future
-versions of the GNU Affero General Public License can be used, that proxy's
-public statement of acceptance of a version permanently authorizes you
-to choose that version for the Program.
-
- Later license versions may give you additional or different
-permissions. However, no additional obligations are imposed on any
-author or copyright holder as a result of your choosing to follow a
-later version.
-
- 15. Disclaimer of Warranty.
-
- THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
-APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
-HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
-OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
-THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
-IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
-ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
- 16. Limitation of Liability.
-
- IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
-THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
-GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
-USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
-DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
-PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
-EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGES.
-
- 17. Interpretation of Sections 15 and 16.
-
- If the disclaimer of warranty and limitation of liability provided
-above cannot be given local legal effect according to their terms,
-reviewing courts shall apply local law that most closely approximates
-an absolute waiver of all civil liability in connection with the
-Program, unless a warranty or assumption of liability accompanies a
-copy of the Program in return for a fee.
-
- END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-state the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- Copyright (C)
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as published
- by the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see .
-
-Also add information on how to contact you by electronic and paper mail.
-
- If your software can interact with users remotely through a computer
-network, you should also make sure that it provides a way for users to
-get its source. For example, if your program is a web application, its
-interface could display a "Source" link that leads users to an archive
-of the code. There are many ways you could offer source, and different
-solutions will be better for different programs; see section 13 for the
-specific requirements.
-
- You should also get your employer (if you work as a programmer) or school,
-if any, to sign a "copyright disclaimer" for the program, if necessary.
-For more information on this, and how to apply and follow the GNU AGPL, see
-.
diff --git a/Packages/manifest.json b/Packages/manifest.json
new file mode 100644
index 0000000..9e3717e
--- /dev/null
+++ b/Packages/manifest.json
@@ -0,0 +1,44 @@
+{
+ "dependencies": {
+ "com.unity.collab-proxy": "2.10.0",
+ "com.unity.feature.development": "1.0.2",
+ "com.unity.inputsystem": "1.14.2",
+ "com.unity.multiplayer.center": "1.0.0",
+ "com.unity.render-pipelines.high-definition": "17.2.0",
+ "com.unity.timeline": "1.8.9",
+ "com.unity.ugui": "2.0.0",
+ "com.unity.visualscripting": "1.9.8",
+ "com.unity.modules.accessibility": "1.0.0",
+ "com.unity.modules.ai": "1.0.0",
+ "com.unity.modules.androidjni": "1.0.0",
+ "com.unity.modules.animation": "1.0.0",
+ "com.unity.modules.assetbundle": "1.0.0",
+ "com.unity.modules.audio": "1.0.0",
+ "com.unity.modules.cloth": "1.0.0",
+ "com.unity.modules.director": "1.0.0",
+ "com.unity.modules.imageconversion": "1.0.0",
+ "com.unity.modules.imgui": "1.0.0",
+ "com.unity.modules.jsonserialize": "1.0.0",
+ "com.unity.modules.particlesystem": "1.0.0",
+ "com.unity.modules.physics": "1.0.0",
+ "com.unity.modules.physics2d": "1.0.0",
+ "com.unity.modules.screencapture": "1.0.0",
+ "com.unity.modules.terrain": "1.0.0",
+ "com.unity.modules.terrainphysics": "1.0.0",
+ "com.unity.modules.tilemap": "1.0.0",
+ "com.unity.modules.ui": "1.0.0",
+ "com.unity.modules.uielements": "1.0.0",
+ "com.unity.modules.umbra": "1.0.0",
+ "com.unity.modules.unityanalytics": "1.0.0",
+ "com.unity.modules.unitywebrequest": "1.0.0",
+ "com.unity.modules.unitywebrequestassetbundle": "1.0.0",
+ "com.unity.modules.unitywebrequestaudio": "1.0.0",
+ "com.unity.modules.unitywebrequesttexture": "1.0.0",
+ "com.unity.modules.unitywebrequestwww": "1.0.0",
+ "com.unity.modules.vehicles": "1.0.0",
+ "com.unity.modules.video": "1.0.0",
+ "com.unity.modules.vr": "1.0.0",
+ "com.unity.modules.wind": "1.0.0",
+ "com.unity.modules.xr": "1.0.0"
+ }
+}
diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json
new file mode 100644
index 0000000..3c31282
--- /dev/null
+++ b/Packages/packages-lock.json
@@ -0,0 +1,513 @@
+{
+ "dependencies": {
+ "com.unity.burst": {
+ "version": "1.8.25",
+ "depth": 2,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.mathematics": "1.2.1",
+ "com.unity.modules.jsonserialize": "1.0.0"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.collab-proxy": {
+ "version": "2.10.0",
+ "depth": 0,
+ "source": "registry",
+ "dependencies": {},
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.collections": {
+ "version": "2.6.2",
+ "depth": 2,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.burst": "1.8.23",
+ "com.unity.mathematics": "1.3.2",
+ "com.unity.test-framework": "1.4.6",
+ "com.unity.nuget.mono-cecil": "1.11.5",
+ "com.unity.test-framework.performance": "3.0.3"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.editorcoroutines": {
+ "version": "1.0.0",
+ "depth": 1,
+ "source": "registry",
+ "dependencies": {},
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.ext.nunit": {
+ "version": "2.0.5",
+ "depth": 2,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.feature.development": {
+ "version": "1.0.2",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.ide.visualstudio": "2.0.25",
+ "com.unity.ide.rider": "3.0.38",
+ "com.unity.editorcoroutines": "1.0.0",
+ "com.unity.performance.profile-analyzer": "1.2.3",
+ "com.unity.test-framework": "1.6.0",
+ "com.unity.testtools.codecoverage": "1.2.6"
+ }
+ },
+ "com.unity.ide.rider": {
+ "version": "3.0.38",
+ "depth": 1,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.ext.nunit": "1.0.6"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.ide.visualstudio": {
+ "version": "2.0.25",
+ "depth": 1,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.test-framework": "1.1.31"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.inputsystem": {
+ "version": "1.14.2",
+ "depth": 0,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.modules.uielements": "1.0.0"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.mathematics": {
+ "version": "1.3.2",
+ "depth": 2,
+ "source": "registry",
+ "dependencies": {},
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.multiplayer.center": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.uielements": "1.0.0"
+ }
+ },
+ "com.unity.nuget.mono-cecil": {
+ "version": "1.11.5",
+ "depth": 3,
+ "source": "registry",
+ "dependencies": {},
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.performance.profile-analyzer": {
+ "version": "1.2.3",
+ "depth": 1,
+ "source": "registry",
+ "dependencies": {},
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.render-pipelines.core": {
+ "version": "17.2.0",
+ "depth": 1,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.burst": "1.8.14",
+ "com.unity.mathematics": "1.3.2",
+ "com.unity.ugui": "2.0.0",
+ "com.unity.collections": "2.4.3",
+ "com.unity.modules.physics": "1.0.0",
+ "com.unity.modules.terrain": "1.0.0",
+ "com.unity.modules.jsonserialize": "1.0.0",
+ "com.unity.rendering.light-transport": "1.0.1"
+ }
+ },
+ "com.unity.render-pipelines.high-definition": {
+ "version": "17.2.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.video": "1.0.0",
+ "com.unity.modules.animation": "1.0.0",
+ "com.unity.modules.imageconversion": "1.0.0",
+ "com.unity.render-pipelines.core": "17.2.0",
+ "com.unity.shadergraph": "17.2.0",
+ "com.unity.visualeffectgraph": "17.2.0",
+ "com.unity.render-pipelines.high-definition-config": "17.2.0"
+ }
+ },
+ "com.unity.render-pipelines.high-definition-config": {
+ "version": "17.2.0",
+ "depth": 1,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.render-pipelines.core": "17.2.0"
+ }
+ },
+ "com.unity.rendering.light-transport": {
+ "version": "1.0.1",
+ "depth": 2,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.collections": "2.2.0",
+ "com.unity.mathematics": "1.2.4",
+ "com.unity.modules.terrain": "1.0.0"
+ }
+ },
+ "com.unity.searcher": {
+ "version": "4.9.3",
+ "depth": 2,
+ "source": "registry",
+ "dependencies": {},
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.settings-manager": {
+ "version": "2.1.0",
+ "depth": 2,
+ "source": "registry",
+ "dependencies": {},
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.shadergraph": {
+ "version": "17.2.0",
+ "depth": 1,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.render-pipelines.core": "17.2.0",
+ "com.unity.searcher": "4.9.3"
+ }
+ },
+ "com.unity.test-framework": {
+ "version": "1.6.0",
+ "depth": 1,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.ext.nunit": "2.0.3",
+ "com.unity.modules.imgui": "1.0.0",
+ "com.unity.modules.jsonserialize": "1.0.0"
+ }
+ },
+ "com.unity.test-framework.performance": {
+ "version": "3.2.0",
+ "depth": 3,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.test-framework": "1.1.33",
+ "com.unity.modules.jsonserialize": "1.0.0"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.testtools.codecoverage": {
+ "version": "1.2.6",
+ "depth": 1,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.test-framework": "1.0.16",
+ "com.unity.settings-manager": "1.0.1"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.timeline": {
+ "version": "1.8.9",
+ "depth": 0,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.modules.audio": "1.0.0",
+ "com.unity.modules.director": "1.0.0",
+ "com.unity.modules.animation": "1.0.0",
+ "com.unity.modules.particlesystem": "1.0.0"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.ugui": {
+ "version": "2.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.ui": "1.0.0",
+ "com.unity.modules.imgui": "1.0.0"
+ }
+ },
+ "com.unity.visualeffectgraph": {
+ "version": "17.2.0",
+ "depth": 1,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.shadergraph": "17.2.0",
+ "com.unity.render-pipelines.core": "17.2.0"
+ }
+ },
+ "com.unity.visualscripting": {
+ "version": "1.9.8",
+ "depth": 0,
+ "source": "registry",
+ "dependencies": {
+ "com.unity.ugui": "1.0.0",
+ "com.unity.modules.jsonserialize": "1.0.0"
+ },
+ "url": "https://packages.unity.com"
+ },
+ "com.unity.modules.accessibility": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.ai": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.androidjni": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.animation": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.assetbundle": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.audio": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.cloth": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.physics": "1.0.0"
+ }
+ },
+ "com.unity.modules.director": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.audio": "1.0.0",
+ "com.unity.modules.animation": "1.0.0"
+ }
+ },
+ "com.unity.modules.hierarchycore": {
+ "version": "1.0.0",
+ "depth": 1,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.imageconversion": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.imgui": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.jsonserialize": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.particlesystem": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.physics": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.physics2d": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.screencapture": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.imageconversion": "1.0.0"
+ }
+ },
+ "com.unity.modules.subsystems": {
+ "version": "1.0.0",
+ "depth": 1,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.jsonserialize": "1.0.0"
+ }
+ },
+ "com.unity.modules.terrain": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.terrainphysics": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.physics": "1.0.0",
+ "com.unity.modules.terrain": "1.0.0"
+ }
+ },
+ "com.unity.modules.tilemap": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.physics2d": "1.0.0"
+ }
+ },
+ "com.unity.modules.ui": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.uielements": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.ui": "1.0.0",
+ "com.unity.modules.imgui": "1.0.0",
+ "com.unity.modules.jsonserialize": "1.0.0",
+ "com.unity.modules.hierarchycore": "1.0.0",
+ "com.unity.modules.physics": "1.0.0"
+ }
+ },
+ "com.unity.modules.umbra": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.unityanalytics": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.unitywebrequest": "1.0.0",
+ "com.unity.modules.jsonserialize": "1.0.0"
+ }
+ },
+ "com.unity.modules.unitywebrequest": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.unitywebrequestassetbundle": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.assetbundle": "1.0.0",
+ "com.unity.modules.unitywebrequest": "1.0.0"
+ }
+ },
+ "com.unity.modules.unitywebrequestaudio": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.unitywebrequest": "1.0.0",
+ "com.unity.modules.audio": "1.0.0"
+ }
+ },
+ "com.unity.modules.unitywebrequesttexture": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.unitywebrequest": "1.0.0",
+ "com.unity.modules.imageconversion": "1.0.0"
+ }
+ },
+ "com.unity.modules.unitywebrequestwww": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.unitywebrequest": "1.0.0",
+ "com.unity.modules.unitywebrequestassetbundle": "1.0.0",
+ "com.unity.modules.unitywebrequestaudio": "1.0.0",
+ "com.unity.modules.audio": "1.0.0",
+ "com.unity.modules.assetbundle": "1.0.0",
+ "com.unity.modules.imageconversion": "1.0.0"
+ }
+ },
+ "com.unity.modules.vehicles": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.physics": "1.0.0"
+ }
+ },
+ "com.unity.modules.video": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.audio": "1.0.0",
+ "com.unity.modules.ui": "1.0.0",
+ "com.unity.modules.unitywebrequest": "1.0.0"
+ }
+ },
+ "com.unity.modules.vr": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.jsonserialize": "1.0.0",
+ "com.unity.modules.physics": "1.0.0",
+ "com.unity.modules.xr": "1.0.0"
+ }
+ },
+ "com.unity.modules.wind": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {}
+ },
+ "com.unity.modules.xr": {
+ "version": "1.0.0",
+ "depth": 0,
+ "source": "builtin",
+ "dependencies": {
+ "com.unity.modules.physics": "1.0.0",
+ "com.unity.modules.jsonserialize": "1.0.0",
+ "com.unity.modules.subsystems": "1.0.0"
+ }
+ }
+ }
+}
diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset
new file mode 100644
index 0000000..27287fe
--- /dev/null
+++ b/ProjectSettings/AudioManager.asset
@@ -0,0 +1,19 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!11 &1
+AudioManager:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Volume: 1
+ Rolloff Scale: 1
+ Doppler Factor: 1
+ Default Speaker Mode: 2
+ m_SampleRate: 0
+ m_DSPBufferSize: 1024
+ m_VirtualVoiceCount: 512
+ m_RealVoiceCount: 32
+ m_SpatializerPlugin:
+ m_AmbisonicDecoderPlugin:
+ m_DisableAudio: 0
+ m_VirtualizeEffects: 1
+ m_RequestedDSPBufferSize: 0
diff --git a/ProjectSettings/ClusterInputManager.asset b/ProjectSettings/ClusterInputManager.asset
new file mode 100644
index 0000000..e7886b2
--- /dev/null
+++ b/ProjectSettings/ClusterInputManager.asset
@@ -0,0 +1,6 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!236 &1
+ClusterInputManager:
+ m_ObjectHideFlags: 0
+ m_Inputs: []
diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset
new file mode 100644
index 0000000..1596c42
--- /dev/null
+++ b/ProjectSettings/DynamicsManager.asset
@@ -0,0 +1,36 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!55 &1
+PhysicsManager:
+ m_ObjectHideFlags: 0
+ serializedVersion: 13
+ m_Gravity: {x: 0, y: -9.81, z: 0}
+ m_DefaultMaterial: {fileID: 0}
+ m_BounceThreshold: 2
+ m_SleepThreshold: 0.005
+ m_DefaultContactOffset: 0.01
+ m_DefaultSolverIterations: 6
+ m_DefaultSolverVelocityIterations: 1
+ m_QueriesHitBackfaces: 0
+ m_QueriesHitTriggers: 1
+ m_EnableAdaptiveForce: 0
+ m_ClothInterCollisionDistance: 0.1
+ m_ClothInterCollisionStiffness: 0.2
+ m_ContactsGeneration: 1
+ m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
+ m_AutoSimulation: 1
+ m_AutoSyncTransforms: 0
+ m_ReuseCollisionCallbacks: 0
+ m_ClothInterCollisionSettingsToggle: 0
+ m_ClothGravity: {x: 0, y: -9.81, z: 0}
+ m_ContactPairsMode: 0
+ m_BroadphaseType: 0
+ m_WorldBounds:
+ m_Center: {x: 0, y: 0, z: 0}
+ m_Extent: {x: 250, y: 250, z: 250}
+ m_WorldSubdivisions: 8
+ m_FrictionType: 0
+ m_EnableEnhancedDeterminism: 0
+ m_EnableUnifiedHeightmaps: 1
+ m_SolverType: 0
+ m_DefaultMaxAngularSpeed: 50
diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset
new file mode 100644
index 0000000..f08d036
--- /dev/null
+++ b/ProjectSettings/EditorBuildSettings.asset
@@ -0,0 +1,13 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1045 &1
+EditorBuildSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Scenes:
+ - enabled: 1
+ path: Assets/OutdoorsScene.unity
+ guid: 8124e5870f4fd4c779e7a5f994e84ad1
+ m_configObjects:
+ com.unity.input.settings.actions: {fileID: -944628639613478452, guid: 35845fe01580c41289b024647b1d1c53, type: 3}
+ m_UseUCBPForAssetBundles: 0
diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset
new file mode 100644
index 0000000..878c4cb
--- /dev/null
+++ b/ProjectSettings/EditorSettings.asset
@@ -0,0 +1,50 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!159 &1
+EditorSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 15
+ m_SerializationMode: 2
+ m_LineEndingsForNewScripts: 0
+ m_DefaultBehaviorMode: 0
+ m_PrefabRegularEnvironment: {fileID: 0}
+ m_PrefabUIEnvironment: {fileID: 0}
+ m_SpritePackerMode: 0
+ m_SpritePackerCacheSize: 10
+ m_SpritePackerPaddingPower: 1
+ m_Bc7TextureCompressor: 0
+ m_EtcTextureCompressorBehavior: 1
+ m_EtcTextureFastCompressor: 1
+ m_EtcTextureNormalCompressor: 2
+ m_EtcTextureBestCompressor: 4
+ m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref
+ m_ProjectGenerationRootNamespace:
+ m_EnableTextureStreamingInEditMode: 1
+ m_EnableTextureStreamingInPlayMode: 1
+ m_EnableEditorAsyncCPUTextureLoading: 0
+ m_AsyncShaderCompilation: 1
+ m_PrefabModeAllowAutoSave: 1
+ m_EnterPlayModeOptionsEnabled: 1
+ m_EnterPlayModeOptions: 0
+ m_GameObjectNamingDigits: 1
+ m_GameObjectNamingScheme: 0
+ m_AssetNamingUsesSpace: 1
+ m_InspectorUseIMGUIDefaultInspector: 0
+ m_UseLegacyProbeSampleCount: 0
+ m_SerializeInlineMappingsOnOneLine: 1
+ m_DisableCookiesInLightmapper: 0
+ m_ShadowmaskStitching: 0
+ m_AssetPipelineMode: 1
+ m_RefreshImportMode: 0
+ m_CacheServerMode: 0
+ m_CacheServerEndpoint:
+ m_CacheServerNamespacePrefix: default
+ m_CacheServerEnableDownload: 1
+ m_CacheServerEnableUpload: 1
+ m_CacheServerEnableAuth: 0
+ m_CacheServerEnableTls: 0
+ m_CacheServerValidationMode: 2
+ m_CacheServerDownloadBatchSize: 128
+ m_EnableEnlightenBakedGI: 0
+ m_ReferencedClipsExactNaming: 1
+ m_ForceAssetUnloadAndGCOnSceneLoad: 1
diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset
new file mode 100644
index 0000000..6e8fa80
--- /dev/null
+++ b/ProjectSettings/GraphicsSettings.asset
@@ -0,0 +1,67 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!30 &1
+GraphicsSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 16
+ m_Deferred:
+ m_Mode: 1
+ m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0}
+ m_DeferredReflections:
+ m_Mode: 1
+ m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0}
+ m_ScreenSpaceShadows:
+ m_Mode: 1
+ m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0}
+ m_DepthNormals:
+ m_Mode: 1
+ m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0}
+ m_MotionVectors:
+ m_Mode: 1
+ m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0}
+ m_LightHalo:
+ m_Mode: 1
+ m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0}
+ m_LensFlare:
+ m_Mode: 1
+ m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0}
+ m_VideoShadersIncludeMode: 2
+ m_AlwaysIncludedShaders:
+ - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0}
+ - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0}
+ - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0}
+ - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0}
+ - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0}
+ - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0}
+ - {fileID: 10783, guid: 0000000000000000f000000000000000, type: 0}
+ m_PreloadedShaders: []
+ m_PreloadShadersBatchTimeLimit: -1
+ m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
+ m_CustomRenderPipeline: {fileID: 11400000, guid: b9f3086da92434da0bc1518f19f0ce86, type: 2}
+ m_TransparencySortMode: 0
+ m_TransparencySortAxis: {x: 0, y: 0, z: 1}
+ m_DefaultRenderingPath: 1
+ m_DefaultMobileRenderingPath: 1
+ m_TierSettings: []
+ m_LightmapStripping: 0
+ m_FogStripping: 0
+ m_InstancingStripping: 0
+ m_BrgStripping: 0
+ m_LightmapKeepPlain: 1
+ m_LightmapKeepDirCombined: 1
+ m_LightmapKeepDynamicPlain: 1
+ m_LightmapKeepDynamicDirCombined: 1
+ m_LightmapKeepShadowMask: 1
+ m_LightmapKeepSubtractive: 1
+ m_FogKeepLinear: 1
+ m_FogKeepExp: 1
+ m_FogKeepExp2: 1
+ m_AlbedoSwatchInfos: []
+ m_RenderPipelineGlobalSettingsMap:
+ UnityEngine.Rendering.HighDefinition.HDRenderPipeline: {fileID: 11400000, guid: ac0316ca287ba459492b669ff1317a6f, type: 2}
+ m_LightsUseLinearIntensity: 1
+ m_LightsUseColorTemperature: 1
+ m_LogWhenShaderIsCompiled: 0
+ m_LightProbeOutsideHullStrategy: 0
+ m_CameraRelativeLightCulling: 0
+ m_CameraRelativeShadowCulling: 0
diff --git a/ProjectSettings/HDRPProjectSettings.asset b/ProjectSettings/HDRPProjectSettings.asset
new file mode 100644
index 0000000..835f46f
--- /dev/null
+++ b/ProjectSettings/HDRPProjectSettings.asset
@@ -0,0 +1,29 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &1
+MonoBehaviour:
+ m_ObjectHideFlags: 61
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: 63a2978a97e4fc04cb9d905947216f3d, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_ProjectSettingFolderPath: Settings/HDRPDefaultResources
+ m_WizardPopupAtStart: 1
+ m_LastMaterialVersion: 13
+ m_HDShaderGraphLastSeenVersion: 0
+ m_PluginMaterialVersions:
+ m_Keys: []
+ m_Values:
+ m_PluginSubTargetVersions:
+ m_Keys: []
+ m_Values:
+ m_Version: 2
+ m_ObsoleteWizardPopupAlreadyShownOnce: 1
+ m_ObsoleteWizardActiveTab: 0
+ m_ObsoleteWizardNeedRestartAfterChangingToDX12: 0
+ m_ObsoleteWizardNeedToRunFixAllAgainAfterDomainReload: 0
diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset
new file mode 100644
index 0000000..b16147e
--- /dev/null
+++ b/ProjectSettings/InputManager.asset
@@ -0,0 +1,487 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!13 &1
+InputManager:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_Axes:
+ - serializedVersion: 3
+ m_Name: Horizontal
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton: left
+ positiveButton: right
+ altNegativeButton: a
+ altPositiveButton: d
+ gravity: 3
+ dead: 0.001
+ sensitivity: 3
+ snap: 1
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Vertical
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton: down
+ positiveButton: up
+ altNegativeButton: s
+ altPositiveButton: w
+ gravity: 3
+ dead: 0.001
+ sensitivity: 3
+ snap: 1
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Fire1
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: left ctrl
+ altNegativeButton:
+ altPositiveButton: mouse 0
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Fire2
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: left alt
+ altNegativeButton:
+ altPositiveButton: mouse 1
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Fire3
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: left shift
+ altNegativeButton:
+ altPositiveButton: mouse 2
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Jump
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: space
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Mouse X
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton:
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 0
+ dead: 0
+ sensitivity: 0.1
+ snap: 0
+ invert: 0
+ type: 1
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Mouse Y
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton:
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 0
+ dead: 0
+ sensitivity: 0.1
+ snap: 0
+ invert: 0
+ type: 1
+ axis: 1
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Mouse ScrollWheel
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton:
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 0
+ dead: 0
+ sensitivity: 0.1
+ snap: 0
+ invert: 0
+ type: 1
+ axis: 2
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Horizontal
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton:
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 0
+ dead: 0.19
+ sensitivity: 1
+ snap: 0
+ invert: 0
+ type: 2
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Vertical
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton:
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 0
+ dead: 0.19
+ sensitivity: 1
+ snap: 0
+ invert: 1
+ type: 2
+ axis: 1
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Fire1
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: joystick button 0
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Fire2
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: joystick button 1
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Fire3
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: joystick button 2
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Jump
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: joystick button 3
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Submit
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: return
+ altNegativeButton:
+ altPositiveButton: joystick button 0
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Submit
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: enter
+ altNegativeButton:
+ altPositiveButton: space
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Cancel
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: escape
+ altNegativeButton:
+ altPositiveButton: joystick button 1
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Enable Debug Button 1
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: left ctrl
+ altNegativeButton:
+ altPositiveButton: joystick button 8
+ gravity: 0
+ dead: 0
+ sensitivity: 0
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Enable Debug Button 2
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: backspace
+ altNegativeButton:
+ altPositiveButton: joystick button 9
+ gravity: 0
+ dead: 0
+ sensitivity: 0
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Reset
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: left alt
+ altNegativeButton:
+ altPositiveButton: joystick button 1
+ gravity: 0
+ dead: 0
+ sensitivity: 0
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Next
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: page down
+ altNegativeButton:
+ altPositiveButton: joystick button 5
+ gravity: 0
+ dead: 0
+ sensitivity: 0
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Previous
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: page up
+ altNegativeButton:
+ altPositiveButton: joystick button 4
+ gravity: 0
+ dead: 0
+ sensitivity: 0
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Validate
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: return
+ altNegativeButton:
+ altPositiveButton: joystick button 0
+ gravity: 0
+ dead: 0
+ sensitivity: 0
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Persistent
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: right shift
+ altNegativeButton:
+ altPositiveButton: joystick button 2
+ gravity: 0
+ dead: 0
+ sensitivity: 0
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Multiplier
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton:
+ positiveButton: left shift
+ altNegativeButton:
+ altPositiveButton: joystick button 3
+ gravity: 0
+ dead: 0
+ sensitivity: 0
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Horizontal
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton: left
+ positiveButton: right
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Vertical
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton: down
+ positiveButton: up
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 0
+ axis: 0
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Vertical
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton: down
+ positiveButton: up
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 2
+ axis: 6
+ joyNum: 0
+ - serializedVersion: 3
+ m_Name: Debug Horizontal
+ descriptiveName:
+ descriptiveNegativeName:
+ negativeButton: left
+ positiveButton: right
+ altNegativeButton:
+ altPositiveButton:
+ gravity: 1000
+ dead: 0.001
+ sensitivity: 1000
+ snap: 0
+ invert: 0
+ type: 2
+ axis: 5
+ joyNum: 0
diff --git a/ProjectSettings/MemorySettings.asset b/ProjectSettings/MemorySettings.asset
new file mode 100644
index 0000000..5b5face
--- /dev/null
+++ b/ProjectSettings/MemorySettings.asset
@@ -0,0 +1,35 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!387306366 &1
+MemorySettings:
+ m_ObjectHideFlags: 0
+ m_EditorMemorySettings:
+ m_MainAllocatorBlockSize: -1
+ m_ThreadAllocatorBlockSize: -1
+ m_MainGfxBlockSize: -1
+ m_ThreadGfxBlockSize: -1
+ m_CacheBlockSize: -1
+ m_TypetreeBlockSize: -1
+ m_ProfilerBlockSize: -1
+ m_ProfilerEditorBlockSize: -1
+ m_BucketAllocatorGranularity: -1
+ m_BucketAllocatorBucketsCount: -1
+ m_BucketAllocatorBlockSize: -1
+ m_BucketAllocatorBlockCount: -1
+ m_ProfilerBucketAllocatorGranularity: -1
+ m_ProfilerBucketAllocatorBucketsCount: -1
+ m_ProfilerBucketAllocatorBlockSize: -1
+ m_ProfilerBucketAllocatorBlockCount: -1
+ m_TempAllocatorSizeMain: -1
+ m_JobTempAllocatorBlockSize: -1
+ m_BackgroundJobTempAllocatorBlockSize: -1
+ m_JobTempAllocatorReducedBlockSize: -1
+ m_TempAllocatorSizeGIBakingWorker: -1
+ m_TempAllocatorSizeNavMeshWorker: -1
+ m_TempAllocatorSizeAudioWorker: -1
+ m_TempAllocatorSizeCloudWorker: -1
+ m_TempAllocatorSizeGfx: -1
+ m_TempAllocatorSizeJobWorker: -1
+ m_TempAllocatorSizeBackgroundWorker: -1
+ m_TempAllocatorSizePreloadManager: -1
+ m_PlatformMemorySettings: {}
diff --git a/ProjectSettings/MultiplayerManager.asset b/ProjectSettings/MultiplayerManager.asset
new file mode 100644
index 0000000..2a93664
--- /dev/null
+++ b/ProjectSettings/MultiplayerManager.asset
@@ -0,0 +1,7 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!655991488 &1
+MultiplayerManager:
+ m_ObjectHideFlags: 0
+ m_EnableMultiplayerRoles: 0
+ m_StrippingTypes: {}
diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset
new file mode 100644
index 0000000..3b0b7c3
--- /dev/null
+++ b/ProjectSettings/NavMeshAreas.asset
@@ -0,0 +1,91 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!126 &1
+NavMeshProjectSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ areas:
+ - name: Walkable
+ cost: 1
+ - name: Not Walkable
+ cost: 1
+ - name: Jump
+ cost: 2
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ - name:
+ cost: 1
+ m_LastAgentTypeID: -887442657
+ m_Settings:
+ - serializedVersion: 2
+ agentTypeID: 0
+ agentRadius: 0.5
+ agentHeight: 2
+ agentSlope: 45
+ agentClimb: 0.75
+ ledgeDropHeight: 0
+ maxJumpAcrossDistance: 0
+ minRegionArea: 2
+ manualCellSize: 0
+ cellSize: 0.16666667
+ manualTileSize: 0
+ tileSize: 256
+ accuratePlacement: 0
+ debug:
+ m_Flags: 0
+ m_SettingNames:
+ - Humanoid
diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset
new file mode 100644
index 0000000..d6b6d80
--- /dev/null
+++ b/ProjectSettings/PackageManagerSettings.asset
@@ -0,0 +1,35 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &1
+MonoBehaviour:
+ m_ObjectHideFlags: 61
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0}
+ m_Name:
+ m_EditorClassIdentifier:
+ m_EnablePreReleasePackages: 0
+ m_EnablePackageDependencies: 0
+ m_AdvancedSettingsExpanded: 1
+ m_ScopedRegistriesSettingsExpanded: 1
+ m_SeeAllPackageVersions: 0
+ oneTimeWarningShown: 0
+ m_Registries:
+ - m_Id: main
+ m_Name:
+ m_Url: https://packages.unity.com
+ m_Scopes: []
+ m_IsDefault: 1
+ m_Capabilities: 0
+ m_UserSelectedRegistryName:
+ m_UserAddingNewScopedRegistry: 0
+ m_RegistryInfoDraft:
+ m_Modified: 0
+ m_ErrorMessage:
+ m_UserModificationsInstanceId: -822
+ m_OriginalInstanceId: -824
+ m_LoadAssets: 0
diff --git a/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json b/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json
new file mode 100644
index 0000000..3c7b4c1
--- /dev/null
+++ b/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json
@@ -0,0 +1,5 @@
+{
+ "m_Dictionary": {
+ "m_DictionaryValues": []
+ }
+}
\ No newline at end of file
diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset
new file mode 100644
index 0000000..6c5cf8a
--- /dev/null
+++ b/ProjectSettings/Physics2DSettings.asset
@@ -0,0 +1,56 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!19 &1
+Physics2DSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 4
+ m_Gravity: {x: 0, y: -9.81}
+ m_DefaultMaterial: {fileID: 0}
+ m_VelocityIterations: 8
+ m_PositionIterations: 3
+ m_VelocityThreshold: 1
+ m_MaxLinearCorrection: 0.2
+ m_MaxAngularCorrection: 8
+ m_MaxTranslationSpeed: 100
+ m_MaxRotationSpeed: 360
+ m_BaumgarteScale: 0.2
+ m_BaumgarteTimeOfImpactScale: 0.75
+ m_TimeToSleep: 0.5
+ m_LinearSleepTolerance: 0.01
+ m_AngularSleepTolerance: 2
+ m_DefaultContactOffset: 0.01
+ m_JobOptions:
+ serializedVersion: 2
+ useMultithreading: 0
+ useConsistencySorting: 0
+ m_InterpolationPosesPerJob: 100
+ m_NewContactsPerJob: 30
+ m_CollideContactsPerJob: 100
+ m_ClearFlagsPerJob: 200
+ m_ClearBodyForcesPerJob: 200
+ m_SyncDiscreteFixturesPerJob: 50
+ m_SyncContinuousFixturesPerJob: 50
+ m_FindNearestContactsPerJob: 100
+ m_UpdateTriggerContactsPerJob: 100
+ m_IslandSolverCostThreshold: 100
+ m_IslandSolverBodyCostScale: 1
+ m_IslandSolverContactCostScale: 10
+ m_IslandSolverJointCostScale: 10
+ m_IslandSolverBodiesPerJob: 50
+ m_IslandSolverContactsPerJob: 50
+ m_AutoSimulation: 1
+ m_QueriesHitTriggers: 1
+ m_QueriesStartInColliders: 1
+ m_CallbacksOnDisable: 1
+ m_ReuseCollisionCallbacks: 0
+ m_AutoSyncTransforms: 0
+ m_AlwaysShowColliders: 0
+ m_ShowColliderSleep: 1
+ m_ShowColliderContacts: 0
+ m_ShowColliderAABB: 0
+ m_ContactArrowScale: 0.2
+ m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412}
+ m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432}
+ m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745}
+ m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804}
+ m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset
new file mode 100644
index 0000000..67a94da
--- /dev/null
+++ b/ProjectSettings/PresetManager.asset
@@ -0,0 +1,7 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!1386491679 &1
+PresetManager:
+ m_ObjectHideFlags: 0
+ serializedVersion: 2
+ m_DefaultPresets: {}
diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset
new file mode 100644
index 0000000..d96647f
--- /dev/null
+++ b/ProjectSettings/ProjectSettings.asset
@@ -0,0 +1,948 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!129 &1
+PlayerSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 28
+ productGUID: 2be41a43f6d8f44ee9d5372232765f2b
+ AndroidProfiler: 0
+ AndroidFilterTouchesWhenObscured: 0
+ AndroidEnableSustainedPerformanceMode: 0
+ defaultScreenOrientation: 4
+ targetDevice: 2
+ useOnDemandResources: 0
+ accelerometerFrequency: 60
+ companyName: DefaultCompany
+ productName: Sword Game
+ defaultCursor: {fileID: 0}
+ cursorHotspot: {x: 0, y: 0}
+ m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1}
+ m_ShowUnitySplashScreen: 1
+ m_ShowUnitySplashLogo: 1
+ m_SplashScreenOverlayOpacity: 1
+ m_SplashScreenAnimation: 1
+ m_SplashScreenLogoStyle: 1
+ m_SplashScreenDrawMode: 0
+ m_SplashScreenBackgroundAnimationZoom: 1
+ m_SplashScreenLogoAnimationZoom: 1
+ m_SplashScreenBackgroundLandscapeAspect: 1
+ m_SplashScreenBackgroundPortraitAspect: 1
+ m_SplashScreenBackgroundLandscapeUvs:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ m_SplashScreenBackgroundPortraitUvs:
+ serializedVersion: 2
+ x: 0
+ y: 0
+ width: 1
+ height: 1
+ m_SplashScreenLogos: []
+ m_VirtualRealitySplashScreen: {fileID: 0}
+ m_HolographicTrackingLossScreen: {fileID: 0}
+ defaultScreenWidth: 1024
+ defaultScreenHeight: 768
+ defaultScreenWidthWeb: 960
+ defaultScreenHeightWeb: 600
+ m_StereoRenderingPath: 0
+ m_ActiveColorSpace: 1
+ unsupportedMSAAFallback: 0
+ m_SpriteBatchMaxVertexCount: 65535
+ m_SpriteBatchVertexThreshold: 300
+ m_MTRendering: 1
+ mipStripping: 0
+ numberOfMipsStripped: 0
+ numberOfMipsStrippedPerMipmapLimitGroup: {}
+ m_StackTraceTypes: 010000000100000001000000010000000100000001000000
+ iosShowActivityIndicatorOnLoading: -1
+ androidShowActivityIndicatorOnLoading: -1
+ iosUseCustomAppBackgroundBehavior: 0
+ allowedAutorotateToPortrait: 1
+ allowedAutorotateToPortraitUpsideDown: 1
+ allowedAutorotateToLandscapeRight: 1
+ allowedAutorotateToLandscapeLeft: 1
+ useOSAutorotation: 1
+ use32BitDisplayBuffer: 1
+ preserveFramebufferAlpha: 0
+ disableDepthAndStencilBuffers: 0
+ androidStartInFullscreen: 1
+ androidRenderOutsideSafeArea: 1
+ androidUseSwappy: 0
+ androidDisplayOptions: 1
+ androidBlitType: 0
+ androidResizeableActivity: 1
+ androidDefaultWindowWidth: 1920
+ androidDefaultWindowHeight: 1080
+ androidMinimumWindowWidth: 400
+ androidMinimumWindowHeight: 300
+ androidFullscreenMode: 1
+ androidAutoRotationBehavior: 1
+ androidPredictiveBackSupport: 0
+ androidApplicationEntry: 2
+ defaultIsNativeResolution: 1
+ macRetinaSupport: 1
+ runInBackground: 0
+ muteOtherAudioSources: 0
+ Prepare IOS For Recording: 0
+ Force IOS Speakers When Recording: 0
+ audioSpatialExperience: 0
+ deferSystemGesturesMode: 0
+ hideHomeButton: 0
+ submitAnalytics: 1
+ usePlayerLog: 1
+ dedicatedServerOptimizations: 0
+ bakeCollisionMeshes: 0
+ forceSingleInstance: 0
+ useFlipModelSwapchain: 1
+ resizableWindow: 0
+ useMacAppStoreValidation: 0
+ macAppStoreCategory: public.app-category.games
+ gpuSkinning: 1
+ meshDeformation: 2
+ xboxPIXTextureCapture: 0
+ xboxEnableAvatar: 0
+ xboxEnableKinect: 0
+ xboxEnableKinectAutoTracking: 0
+ xboxEnableFitness: 0
+ visibleInBackground: 1
+ allowFullscreenSwitch: 1
+ fullscreenMode: 1
+ xboxSpeechDB: 0
+ xboxEnableHeadOrientation: 0
+ xboxEnableGuest: 0
+ xboxEnablePIXSampling: 0
+ metalFramebufferOnly: 0
+ xboxOneResolution: 0
+ xboxOneSResolution: 0
+ xboxOneXResolution: 3
+ xboxOneMonoLoggingLevel: 0
+ xboxOneLoggingLevel: 1
+ xboxOneDisableEsram: 0
+ xboxOneEnableTypeOptimization: 0
+ xboxOnePresentImmediateThreshold: 0
+ switchQueueCommandMemory: 1048576
+ switchQueueControlMemory: 16384
+ switchQueueComputeMemory: 262144
+ switchNVNShaderPoolsGranularity: 33554432
+ switchNVNDefaultPoolsGranularity: 16777216
+ switchNVNOtherPoolsGranularity: 16777216
+ switchGpuScratchPoolGranularity: 2097152
+ switchAllowGpuScratchShrinking: 0
+ switchNVNMaxPublicTextureIDCount: 0
+ switchNVNMaxPublicSamplerIDCount: 0
+ switchMaxWorkerMultiple: 8
+ switchNVNGraphicsFirmwareMemory: 32
+ switchGraphicsJobsSyncAfterKick: 1
+ vulkanNumSwapchainBuffers: 3
+ vulkanEnableSetSRGBWrite: 0
+ vulkanEnablePreTransform: 0
+ vulkanEnableLateAcquireNextImage: 0
+ vulkanEnableCommandBufferRecycling: 1
+ loadStoreDebugModeEnabled: 0
+ visionOSBundleVersion: 1.0
+ tvOSBundleVersion: 1.0
+ bundleVersion: 0.1.0
+ preloadedAssets: []
+ metroInputSource: 0
+ wsaTransparentSwapchain: 0
+ m_HolographicPauseOnTrackingLoss: 1
+ xboxOneDisableKinectGpuReservation: 1
+ xboxOneEnable7thCore: 1
+ vrSettings:
+ enable360StereoCapture: 0
+ isWsaHolographicRemotingEnabled: 0
+ enableFrameTimingStats: 0
+ enableOpenGLProfilerGPURecorders: 1
+ allowHDRDisplaySupport: 0
+ useHDRDisplay: 0
+ hdrBitDepth: 0
+ m_ColorGamuts: 00000000
+ targetPixelDensity: 30
+ resolutionScalingMode: 0
+ resetResolutionOnWindowResize: 0
+ androidSupportedAspectRatio: 1
+ androidMaxAspectRatio: 2.4
+ androidMinAspectRatio: 1
+ applicationIdentifier:
+ Standalone: com.Unity-Technologies.com.unity.template.hdrp-blank
+ buildNumber:
+ Standalone: 0
+ VisionOS: 0
+ iPhone: 0
+ tvOS: 0
+ overrideDefaultApplicationIdentifier: 1
+ AndroidBundleVersionCode: 1
+ AndroidMinSdkVersion: 23
+ AndroidTargetSdkVersion: 0
+ AndroidPreferredInstallLocation: 1
+ aotOptions:
+ stripEngineCode: 1
+ iPhoneStrippingLevel: 0
+ iPhoneScriptCallOptimization: 0
+ ForceInternetPermission: 0
+ ForceSDCardPermission: 0
+ CreateWallpaper: 0
+ androidSplitApplicationBinary: 0
+ keepLoadedShadersAlive: 0
+ StripUnusedMeshComponents: 0
+ strictShaderVariantMatching: 0
+ VertexChannelCompressionMask: 4054
+ iPhoneSdkVersion: 988
+ iOSSimulatorArchitecture: 0
+ iOSTargetOSVersionString: 13.0
+ tvOSSdkVersion: 0
+ tvOSSimulatorArchitecture: 0
+ tvOSRequireExtendedGameController: 0
+ tvOSTargetOSVersionString: 13.0
+ VisionOSSdkVersion: 0
+ VisionOSTargetOSVersionString: 1.0
+ uIPrerenderedIcon: 0
+ uIRequiresPersistentWiFi: 0
+ uIRequiresFullScreen: 1
+ uIStatusBarHidden: 1
+ uIExitOnSuspend: 0
+ uIStatusBarStyle: 0
+ appleTVSplashScreen: {fileID: 0}
+ appleTVSplashScreen2x: {fileID: 0}
+ tvOSSmallIconLayers: []
+ tvOSSmallIconLayers2x: []
+ tvOSLargeIconLayers: []
+ tvOSLargeIconLayers2x: []
+ tvOSTopShelfImageLayers: []
+ tvOSTopShelfImageLayers2x: []
+ tvOSTopShelfImageWideLayers: []
+ tvOSTopShelfImageWideLayers2x: []
+ iOSLaunchScreenType: 0
+ iOSLaunchScreenPortrait: {fileID: 0}
+ iOSLaunchScreenLandscape: {fileID: 0}
+ iOSLaunchScreenBackgroundColor:
+ serializedVersion: 2
+ rgba: 0
+ iOSLaunchScreenFillPct: 100
+ iOSLaunchScreenSize: 100
+ iOSLaunchScreeniPadType: 0
+ iOSLaunchScreeniPadImage: {fileID: 0}
+ iOSLaunchScreeniPadBackgroundColor:
+ serializedVersion: 2
+ rgba: 0
+ iOSLaunchScreeniPadFillPct: 100
+ iOSLaunchScreeniPadSize: 100
+ iOSLaunchScreenCustomStoryboardPath:
+ iOSLaunchScreeniPadCustomStoryboardPath:
+ iOSDeviceRequirements: []
+ iOSURLSchemes: []
+ macOSURLSchemes: []
+ iOSBackgroundModes: 0
+ iOSMetalForceHardShadows: 0
+ metalEditorSupport: 1
+ metalAPIValidation: 1
+ metalCompileShaderBinary: 0
+ iOSRenderExtraFrameOnPause: 0
+ iosCopyPluginsCodeInsteadOfSymlink: 0
+ appleDeveloperTeamID:
+ iOSManualSigningProvisioningProfileID:
+ tvOSManualSigningProvisioningProfileID:
+ VisionOSManualSigningProvisioningProfileID:
+ iOSManualSigningProvisioningProfileType: 0
+ tvOSManualSigningProvisioningProfileType: 0
+ VisionOSManualSigningProvisioningProfileType: 0
+ appleEnableAutomaticSigning: 0
+ iOSRequireARKit: 0
+ iOSAutomaticallyDetectAndAddCapabilities: 1
+ appleEnableProMotion: 0
+ shaderPrecisionModel: 0
+ clonedFromGUID: c71a6e77368cc6048998f34f4bbe2b86
+ templatePackageId: com.unity.template.hdrp-blank@17.0.7
+ templateDefaultScene: Assets/OutdoorsScene.unity
+ useCustomMainManifest: 0
+ useCustomLauncherManifest: 0
+ useCustomMainGradleTemplate: 0
+ useCustomLauncherGradleManifest: 0
+ useCustomBaseGradleTemplate: 0
+ useCustomGradlePropertiesTemplate: 0
+ useCustomGradleSettingsTemplate: 0
+ useCustomProguardFile: 0
+ AndroidTargetArchitectures: 2
+ AndroidSplashScreenScale: 0
+ androidSplashScreen: {fileID: 0}
+ AndroidKeystoreName:
+ AndroidKeyaliasName:
+ AndroidEnableArmv9SecurityFeatures: 0
+ AndroidEnableArm64MTE: 0
+ AndroidBuildApkPerCpuArchitecture: 0
+ AndroidTVCompatibility: 0
+ AndroidIsGame: 1
+ androidAppCategory: 3
+ useAndroidAppCategory: 1
+ androidAppCategoryOther:
+ AndroidEnableTango: 0
+ androidEnableBanner: 1
+ androidUseLowAccuracyLocation: 0
+ androidUseCustomKeystore: 0
+ m_AndroidBanners:
+ - width: 320
+ height: 180
+ banner: {fileID: 0}
+ androidGamepadSupportLevel: 0
+ AndroidMinifyRelease: 0
+ AndroidMinifyDebug: 0
+ AndroidValidateAppBundleSize: 1
+ AndroidAppBundleSizeToValidate: 150
+ AndroidReportGooglePlayAppDependencies: 1
+ androidSymbolsSizeThreshold: 800
+ m_BuildTargetIcons: []
+ m_BuildTargetPlatformIcons:
+ - m_BuildTarget: iPhone
+ m_Icons:
+ - m_Textures: []
+ m_Width: 180
+ m_Height: 180
+ m_Kind: 0
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 120
+ m_Height: 120
+ m_Kind: 0
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 167
+ m_Height: 167
+ m_Kind: 0
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 152
+ m_Height: 152
+ m_Kind: 0
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 76
+ m_Height: 76
+ m_Kind: 0
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 120
+ m_Height: 120
+ m_Kind: 3
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 80
+ m_Height: 80
+ m_Kind: 3
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 80
+ m_Height: 80
+ m_Kind: 3
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 40
+ m_Height: 40
+ m_Kind: 3
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 87
+ m_Height: 87
+ m_Kind: 1
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 58
+ m_Height: 58
+ m_Kind: 1
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 29
+ m_Height: 29
+ m_Kind: 1
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 58
+ m_Height: 58
+ m_Kind: 1
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 29
+ m_Height: 29
+ m_Kind: 1
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 60
+ m_Height: 60
+ m_Kind: 2
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 40
+ m_Height: 40
+ m_Kind: 2
+ m_SubKind: iPhone
+ - m_Textures: []
+ m_Width: 40
+ m_Height: 40
+ m_Kind: 2
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 20
+ m_Height: 20
+ m_Kind: 2
+ m_SubKind: iPad
+ - m_Textures: []
+ m_Width: 1024
+ m_Height: 1024
+ m_Kind: 4
+ m_SubKind: App Store
+ - m_BuildTarget: Android
+ m_Icons:
+ - m_Textures: []
+ m_Width: 432
+ m_Height: 432
+ m_Kind: 2
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 324
+ m_Height: 324
+ m_Kind: 2
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 216
+ m_Height: 216
+ m_Kind: 2
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 162
+ m_Height: 162
+ m_Kind: 2
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 108
+ m_Height: 108
+ m_Kind: 2
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 81
+ m_Height: 81
+ m_Kind: 2
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 192
+ m_Height: 192
+ m_Kind: 1
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 144
+ m_Height: 144
+ m_Kind: 1
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 96
+ m_Height: 96
+ m_Kind: 1
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 72
+ m_Height: 72
+ m_Kind: 1
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 48
+ m_Height: 48
+ m_Kind: 1
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 36
+ m_Height: 36
+ m_Kind: 1
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 192
+ m_Height: 192
+ m_Kind: 0
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 144
+ m_Height: 144
+ m_Kind: 0
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 96
+ m_Height: 96
+ m_Kind: 0
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 72
+ m_Height: 72
+ m_Kind: 0
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 48
+ m_Height: 48
+ m_Kind: 0
+ m_SubKind:
+ - m_Textures: []
+ m_Width: 36
+ m_Height: 36
+ m_Kind: 0
+ m_SubKind:
+ m_BuildTargetBatching:
+ - m_BuildTarget: Standalone
+ m_StaticBatching: 1
+ m_DynamicBatching: 0
+ m_BuildTargetShaderSettings: []
+ m_BuildTargetGraphicsJobs:
+ - m_BuildTarget: MacStandaloneSupport
+ m_GraphicsJobs: 0
+ - m_BuildTarget: Switch
+ m_GraphicsJobs: 1
+ - m_BuildTarget: MetroSupport
+ m_GraphicsJobs: 1
+ - m_BuildTarget: AppleTVSupport
+ m_GraphicsJobs: 0
+ - m_BuildTarget: BJMSupport
+ m_GraphicsJobs: 1
+ - m_BuildTarget: LinuxStandaloneSupport
+ m_GraphicsJobs: 1
+ - m_BuildTarget: PS4Player
+ m_GraphicsJobs: 1
+ - m_BuildTarget: iOSSupport
+ m_GraphicsJobs: 0
+ - m_BuildTarget: WindowsStandaloneSupport
+ m_GraphicsJobs: 1
+ - m_BuildTarget: XboxOnePlayer
+ m_GraphicsJobs: 1
+ - m_BuildTarget: LuminSupport
+ m_GraphicsJobs: 0
+ - m_BuildTarget: AndroidPlayer
+ m_GraphicsJobs: 0
+ - m_BuildTarget: WebGLSupport
+ m_GraphicsJobs: 0
+ m_BuildTargetGraphicsJobMode: []
+ m_BuildTargetGraphicsAPIs:
+ - m_BuildTarget: LinuxStandaloneSupport
+ m_APIs: 15000000
+ m_Automatic: 0
+ - m_BuildTarget: MacStandaloneSupport
+ m_APIs: 10000000
+ m_Automatic: 0
+ - m_BuildTarget: WindowsStandaloneSupport
+ m_APIs: 1200000002000000
+ m_Automatic: 0
+ - m_BuildTarget: iOSSupport
+ m_APIs: 10000000
+ m_Automatic: 1
+ - m_BuildTarget: AndroidPlayer
+ m_APIs: 0b000000
+ m_Automatic: 0
+ m_BuildTargetVRSettings: []
+ m_DefaultShaderChunkSizeInMB: 16
+ m_DefaultShaderChunkCount: 0
+ openGLRequireES31: 0
+ openGLRequireES31AEP: 0
+ openGLRequireES32: 0
+ m_TemplateCustomTags: {}
+ mobileMTRendering:
+ Android: 1
+ iPhone: 1
+ tvOS: 1
+ m_BuildTargetGroupLightmapEncodingQuality:
+ - serializedVersion: 2
+ m_BuildTarget: Standalone
+ m_EncodingQuality: 2
+ - serializedVersion: 2
+ m_BuildTarget: Android
+ m_EncodingQuality: 2
+ - serializedVersion: 2
+ m_BuildTarget: Lumin
+ m_EncodingQuality: 2
+ - serializedVersion: 2
+ m_BuildTarget: WindowsStoreApps
+ m_EncodingQuality: 2
+ - serializedVersion: 2
+ m_BuildTarget: iOS
+ m_EncodingQuality: 2
+ - serializedVersion: 2
+ m_BuildTarget: Switch
+ m_EncodingQuality: 2
+ m_BuildTargetGroupHDRCubemapEncodingQuality: []
+ m_BuildTargetGroupLightmapSettings: []
+ m_BuildTargetGroupLoadStoreDebugModeSettings: []
+ m_BuildTargetNormalMapEncoding: []
+ m_BuildTargetDefaultTextureCompressionFormat: []
+ playModeTestRunnerEnabled: 0
+ runPlayModeTestAsEditModeTest: 0
+ actionOnDotNetUnhandledException: 1
+ editorGfxJobOverride: 1
+ enableInternalProfiler: 0
+ logObjCUncaughtExceptions: 1
+ enableCrashReportAPI: 0
+ cameraUsageDescription:
+ locationUsageDescription:
+ microphoneUsageDescription:
+ bluetoothUsageDescription:
+ macOSTargetOSVersion: 11.0
+ switchNMETAOverride:
+ switchNetLibKey:
+ switchSocketMemoryPoolSize: 6144
+ switchSocketAllocatorPoolSize: 128
+ switchSocketConcurrencyLimit: 14
+ switchScreenResolutionBehavior: 2
+ switchUseCPUProfiler: 0
+ switchEnableFileSystemTrace: 0
+ switchLTOSetting: 0
+ switchApplicationID: 0x01004b9000490000
+ switchNSODependencies:
+ switchCompilerFlags:
+ switchTitleNames_0:
+ switchTitleNames_1:
+ switchTitleNames_2:
+ switchTitleNames_3:
+ switchTitleNames_4:
+ switchTitleNames_5:
+ switchTitleNames_6:
+ switchTitleNames_7:
+ switchTitleNames_8:
+ switchTitleNames_9:
+ switchTitleNames_10:
+ switchTitleNames_11:
+ switchTitleNames_12:
+ switchTitleNames_13:
+ switchTitleNames_14:
+ switchTitleNames_15:
+ switchPublisherNames_0:
+ switchPublisherNames_1:
+ switchPublisherNames_2:
+ switchPublisherNames_3:
+ switchPublisherNames_4:
+ switchPublisherNames_5:
+ switchPublisherNames_6:
+ switchPublisherNames_7:
+ switchPublisherNames_8:
+ switchPublisherNames_9:
+ switchPublisherNames_10:
+ switchPublisherNames_11:
+ switchPublisherNames_12:
+ switchPublisherNames_13:
+ switchPublisherNames_14:
+ switchPublisherNames_15:
+ switchIcons_0: {fileID: 0}
+ switchIcons_1: {fileID: 0}
+ switchIcons_2: {fileID: 0}
+ switchIcons_3: {fileID: 0}
+ switchIcons_4: {fileID: 0}
+ switchIcons_5: {fileID: 0}
+ switchIcons_6: {fileID: 0}
+ switchIcons_7: {fileID: 0}
+ switchIcons_8: {fileID: 0}
+ switchIcons_9: {fileID: 0}
+ switchIcons_10: {fileID: 0}
+ switchIcons_11: {fileID: 0}
+ switchIcons_12: {fileID: 0}
+ switchIcons_13: {fileID: 0}
+ switchIcons_14: {fileID: 0}
+ switchIcons_15: {fileID: 0}
+ switchSmallIcons_0: {fileID: 0}
+ switchSmallIcons_1: {fileID: 0}
+ switchSmallIcons_2: {fileID: 0}
+ switchSmallIcons_3: {fileID: 0}
+ switchSmallIcons_4: {fileID: 0}
+ switchSmallIcons_5: {fileID: 0}
+ switchSmallIcons_6: {fileID: 0}
+ switchSmallIcons_7: {fileID: 0}
+ switchSmallIcons_8: {fileID: 0}
+ switchSmallIcons_9: {fileID: 0}
+ switchSmallIcons_10: {fileID: 0}
+ switchSmallIcons_11: {fileID: 0}
+ switchSmallIcons_12: {fileID: 0}
+ switchSmallIcons_13: {fileID: 0}
+ switchSmallIcons_14: {fileID: 0}
+ switchSmallIcons_15: {fileID: 0}
+ switchManualHTML:
+ switchAccessibleURLs:
+ switchLegalInformation:
+ switchMainThreadStackSize: 1048576
+ switchPresenceGroupId:
+ switchLogoHandling: 0
+ switchReleaseVersion: 0
+ switchDisplayVersion: 1.0.0
+ switchStartupUserAccount: 0
+ switchSupportedLanguagesMask: 0
+ switchLogoType: 0
+ switchApplicationErrorCodeCategory:
+ switchUserAccountSaveDataSize: 0
+ switchUserAccountSaveDataJournalSize: 0
+ switchApplicationAttribute: 0
+ switchCardSpecSize: -1
+ switchCardSpecClock: -1
+ switchRatingsMask: 0
+ switchRatingsInt_0: 0
+ switchRatingsInt_1: 0
+ switchRatingsInt_2: 0
+ switchRatingsInt_3: 0
+ switchRatingsInt_4: 0
+ switchRatingsInt_5: 0
+ switchRatingsInt_6: 0
+ switchRatingsInt_7: 0
+ switchRatingsInt_8: 0
+ switchRatingsInt_9: 0
+ switchRatingsInt_10: 0
+ switchRatingsInt_11: 0
+ switchRatingsInt_12: 0
+ switchLocalCommunicationIds_0:
+ switchLocalCommunicationIds_1:
+ switchLocalCommunicationIds_2:
+ switchLocalCommunicationIds_3:
+ switchLocalCommunicationIds_4:
+ switchLocalCommunicationIds_5:
+ switchLocalCommunicationIds_6:
+ switchLocalCommunicationIds_7:
+ switchParentalControl: 0
+ switchAllowsScreenshot: 1
+ switchAllowsVideoCapturing: 1
+ switchAllowsRuntimeAddOnContentInstall: 0
+ switchDataLossConfirmation: 0
+ switchUserAccountLockEnabled: 0
+ switchSystemResourceMemory: 16777216
+ switchSupportedNpadStyles: 22
+ switchNativeFsCacheSize: 32
+ switchIsHoldTypeHorizontal: 0
+ switchSupportedNpadCount: 8
+ switchEnableTouchScreen: 1
+ switchSocketConfigEnabled: 0
+ switchTcpInitialSendBufferSize: 32
+ switchTcpInitialReceiveBufferSize: 64
+ switchTcpAutoSendBufferSizeMax: 256
+ switchTcpAutoReceiveBufferSizeMax: 256
+ switchUdpSendBufferSize: 9
+ switchUdpReceiveBufferSize: 42
+ switchSocketBufferEfficiency: 4
+ switchSocketInitializeEnabled: 1
+ switchNetworkInterfaceManagerInitializeEnabled: 1
+ switchDisableHTCSPlayerConnection: 0
+ switchUseNewStyleFilepaths: 0
+ switchUseLegacyFmodPriorities: 0
+ switchUseMicroSleepForYield: 1
+ switchEnableRamDiskSupport: 0
+ switchMicroSleepForYieldTime: 25
+ switchRamDiskSpaceSize: 12
+ switchUpgradedPlayerSettingsToNMETA: 0
+ ps4NPAgeRating: 12
+ ps4NPTitleSecret:
+ ps4NPTrophyPackPath:
+ ps4ParentalLevel: 11
+ ps4ContentID: ED1633-NPXX51362_00-0000000000000000
+ ps4Category: 0
+ ps4MasterVersion: 01.00
+ ps4AppVersion: 01.00
+ ps4AppType: 0
+ ps4ParamSfxPath:
+ ps4VideoOutPixelFormat: 0
+ ps4VideoOutInitialWidth: 1920
+ ps4VideoOutBaseModeInitialWidth: 1920
+ ps4VideoOutReprojectionRate: 60
+ ps4PronunciationXMLPath:
+ ps4PronunciationSIGPath:
+ ps4BackgroundImagePath:
+ ps4StartupImagePath:
+ ps4StartupImagesFolder:
+ ps4IconImagesFolder:
+ ps4SaveDataImagePath:
+ ps4SdkOverride:
+ ps4BGMPath:
+ ps4ShareFilePath:
+ ps4ShareOverlayImagePath:
+ ps4PrivacyGuardImagePath:
+ ps4ExtraSceSysFile:
+ ps4NPtitleDatPath:
+ ps4RemotePlayKeyAssignment: -1
+ ps4RemotePlayKeyMappingDir:
+ ps4PlayTogetherPlayerCount: 0
+ ps4EnterButtonAssignment: 2
+ ps4ApplicationParam1: 0
+ ps4ApplicationParam2: 0
+ ps4ApplicationParam3: 0
+ ps4ApplicationParam4: 0
+ ps4DownloadDataSize: 0
+ ps4GarlicHeapSize: 2048
+ ps4ProGarlicHeapSize: 2560
+ playerPrefsMaxSize: 32768
+ ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ
+ ps4pnSessions: 1
+ ps4pnPresence: 1
+ ps4pnFriends: 1
+ ps4pnGameCustomData: 1
+ playerPrefsSupport: 0
+ enableApplicationExit: 0
+ resetTempFolder: 1
+ restrictedAudioUsageRights: 0
+ ps4UseResolutionFallback: 0
+ ps4ReprojectionSupport: 0
+ ps4UseAudio3dBackend: 0
+ ps4UseLowGarlicFragmentationMode: 1
+ ps4SocialScreenEnabled: 0
+ ps4ScriptOptimizationLevel: 2
+ ps4Audio3dVirtualSpeakerCount: 14
+ ps4attribCpuUsage: 0
+ ps4PatchPkgPath:
+ ps4PatchLatestPkgPath:
+ ps4PatchChangeinfoPath:
+ ps4PatchDayOne: 0
+ ps4attribUserManagement: 0
+ ps4attribMoveSupport: 0
+ ps4attrib3DSupport: 0
+ ps4attribShareSupport: 0
+ ps4attribExclusiveVR: 0
+ ps4disableAutoHideSplash: 0
+ ps4videoRecordingFeaturesUsed: 0
+ ps4contentSearchFeaturesUsed: 0
+ ps4CompatibilityPS5: 0
+ ps4AllowPS5Detection: 0
+ ps4GPU800MHz: 1
+ ps4attribEyeToEyeDistanceSettingVR: 0
+ ps4IncludedModules: []
+ ps4attribVROutputEnabled: 0
+ monoEnv:
+ splashScreenBackgroundSourceLandscape: {fileID: 0}
+ splashScreenBackgroundSourcePortrait: {fileID: 0}
+ blurSplashScreenBackground: 1
+ spritePackerPolicy:
+ webGLMemorySize: 32
+ webGLExceptionSupport: 1
+ webGLNameFilesAsHashes: 0
+ webGLShowDiagnostics: 0
+ webGLDataCaching: 1
+ webGLDebugSymbols: 0
+ webGLEmscriptenArgs:
+ webGLModulesDirectory:
+ webGLTemplate: APPLICATION:Default
+ webGLAnalyzeBuildSize: 0
+ webGLUseEmbeddedResources: 0
+ webGLCompressionFormat: 0
+ webGLWasmArithmeticExceptions: 0
+ webGLLinkerTarget: 1
+ webGLThreadsSupport: 0
+ webGLDecompressionFallback: 0
+ webGLInitialMemorySize: 32
+ webGLMaximumMemorySize: 2048
+ webGLMemoryGrowthMode: 2
+ webGLMemoryLinearGrowthStep: 16
+ webGLMemoryGeometricGrowthStep: 0.2
+ webGLMemoryGeometricGrowthCap: 96
+ webGLPowerPreference: 2
+ webGLWebAssemblyTable: 0
+ webGLWebAssemblyBigInt: 0
+ webGLCloseOnQuit: 0
+ webWasm2023: 0
+ webEnableSubmoduleStrippingCompatibility: 0
+ scriptingDefineSymbols: {}
+ additionalCompilerArguments: {}
+ platformArchitecture: {}
+ scriptingBackend:
+ Android: 1
+ il2cppCompilerConfiguration: {}
+ il2cppCodeGeneration: {}
+ il2cppStacktraceInformation: {}
+ managedStrippingLevel: {}
+ incrementalIl2cppBuild: {}
+ suppressCommonWarnings: 1
+ allowUnsafeCode: 0
+ useDeterministicCompilation: 1
+ additionalIl2CppArgs:
+ scriptingRuntimeVersion: 1
+ gcIncremental: 1
+ gcWBarrierValidation: 0
+ apiCompatibilityLevelPerPlatform: {}
+ editorAssembliesCompatibilityLevel: 1
+ m_RenderingPath: 1
+ m_MobileRenderingPath: 1
+ metroPackageName: Sword Game
+ metroPackageVersion:
+ metroCertificatePath:
+ metroCertificatePassword:
+ metroCertificateSubject:
+ metroCertificateIssuer:
+ metroCertificateNotAfter: 0000000000000000
+ metroApplicationDescription: Sword Game
+ wsaImages: {}
+ metroTileShortName:
+ metroTileShowName: 0
+ metroMediumTileShowName: 0
+ metroLargeTileShowName: 0
+ metroWideTileShowName: 0
+ metroSupportStreamingInstall: 0
+ metroLastRequiredScene: 0
+ metroDefaultTileSize: 1
+ metroTileForegroundText: 2
+ metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0}
+ metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1}
+ metroSplashScreenUseBackgroundColor: 0
+ syncCapabilities: 0
+ platformCapabilities: {}
+ metroTargetDeviceFamilies: {}
+ metroFTAName:
+ metroFTAFileTypes: []
+ metroProtocolName:
+ vcxProjDefaultLanguage:
+ XboxOneProductId:
+ XboxOneUpdateKey:
+ XboxOneSandboxId:
+ XboxOneContentId:
+ XboxOneTitleId:
+ XboxOneSCId:
+ XboxOneGameOsOverridePath:
+ XboxOnePackagingOverridePath:
+ XboxOneAppManifestOverridePath:
+ XboxOneVersion: 1.0.0.0
+ XboxOnePackageEncryption: 0
+ XboxOnePackageUpdateGranularity: 2
+ XboxOneDescription:
+ XboxOneLanguage:
+ - enus
+ XboxOneCapability: []
+ XboxOneGameRating: {}
+ XboxOneIsContentPackage: 0
+ XboxOneEnhancedXboxCompatibilityMode: 0
+ XboxOneEnableGPUVariability: 1
+ XboxOneSockets: {}
+ XboxOneSplashScreen: {fileID: 0}
+ XboxOneAllowedProductIds: []
+ XboxOnePersistentLocalStorageSize: 0
+ XboxOneXTitleMemory: 8
+ XboxOneOverrideIdentityName:
+ XboxOneOverrideIdentityPublisher:
+ vrEditorSettings: {}
+ cloudServicesEnabled: {}
+ luminIcon:
+ m_Name:
+ m_ModelFolderPath:
+ m_PortalFolderPath:
+ luminCert:
+ m_CertPath:
+ m_SignPackage: 1
+ luminIsChannelApp: 0
+ luminVersion:
+ m_VersionCode: 1
+ m_VersionName:
+ hmiPlayerDataPath:
+ hmiForceSRGBBlit: 1
+ embeddedLinuxEnableGamepadInput: 0
+ hmiCpuConfiguration:
+ hmiLogStartupTiming: 0
+ qnxGraphicConfPath:
+ apiCompatibilityLevel: 6
+ captureStartupLogs: {}
+ activeInputHandler: 1
+ windowsGamepadBackendHint: 0
+ cloudProjectId: 8ecc9435-d38a-4ddc-b9ef-1513e1298642
+ framebufferDepthMemorylessMode: 0
+ qualitySettingsNames: []
+ projectName: Sword Game 2025-10-28_20-01-07
+ organizationId: bobbiebest
+ cloudEnabled: 0
+ legacyClampBlendShapeWeights: 0
+ hmiLoadingImage: {fileID: 0}
+ platformRequiresReadableAssets: 0
+ virtualTexturingSupportEnabled: 0
+ insecureHttpOption: 0
+ androidVulkanDenyFilterList: []
+ androidVulkanAllowFilterList: []
+ androidVulkanDeviceFilterListAsset: {fileID: 0}
+ d3d12DeviceFilterListAsset: {fileID: 0}
diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt
new file mode 100644
index 0000000..5260e5c
--- /dev/null
+++ b/ProjectSettings/ProjectVersion.txt
@@ -0,0 +1,2 @@
+m_EditorVersion: 6000.2.9f1
+m_EditorVersionWithRevision: 6000.2.9f1 (e0c4e791ab71)
diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset
new file mode 100644
index 0000000..9c4b9a0
--- /dev/null
+++ b/ProjectSettings/QualitySettings.asset
@@ -0,0 +1,182 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!47 &1
+QualitySettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 5
+ m_CurrentQuality: 0
+ m_QualitySettings:
+ - serializedVersion: 4
+ name: High Fidelity
+ pixelLightCount: 0
+ shadows: 2
+ shadowResolution: 0
+ shadowProjection: 1
+ shadowCascades: 1
+ shadowDistance: 15
+ shadowNearPlaneOffset: 3
+ shadowCascade2Split: 0.33333334
+ shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
+ shadowmaskMode: 1
+ skinWeights: 255
+ globalTextureMipmapLimit: 0
+ textureMipmapLimitSettings: []
+ anisotropicTextures: 2
+ antiAliasing: 0
+ softParticles: 0
+ softVegetation: 0
+ realtimeReflectionProbes: 0
+ billboardsFaceCameraPosition: 1
+ useLegacyDetailDistribution: 1
+ adaptiveVsync: 0
+ vSyncCount: 1
+ realtimeGICPUUsage: 25
+ adaptiveVsyncExtraA: 0
+ adaptiveVsyncExtraB: 0
+ lodBias: 1
+ maximumLODLevel: 0
+ enableLODCrossFade: 1
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
+ particleRaycastBudget: 256
+ asyncUploadTimeSlice: 2
+ asyncUploadBufferSize: 16
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 11400000, guid: 36dd385e759c96147b6463dcd1149c11,
+ type: 2}
+ terrainQualityOverrides: 0
+ terrainPixelError: 1
+ terrainDetailDensityScale: 1
+ terrainBasemapDistance: 1000
+ terrainDetailDistance: 80
+ terrainTreeDistance: 5000
+ terrainBillboardStart: 50
+ terrainFadeLength: 5
+ terrainMaxTrees: 50
+ excludedTargetPlatforms: []
+ - serializedVersion: 4
+ name: Balanced
+ pixelLightCount: 0
+ shadows: 2
+ shadowResolution: 0
+ shadowProjection: 1
+ shadowCascades: 1
+ shadowDistance: 15
+ shadowNearPlaneOffset: 3
+ shadowCascade2Split: 0.33333334
+ shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
+ shadowmaskMode: 1
+ skinWeights: 255
+ globalTextureMipmapLimit: 0
+ textureMipmapLimitSettings: []
+ anisotropicTextures: 2
+ antiAliasing: 0
+ softParticles: 0
+ softVegetation: 0
+ realtimeReflectionProbes: 0
+ billboardsFaceCameraPosition: 1
+ useLegacyDetailDistribution: 1
+ adaptiveVsync: 0
+ vSyncCount: 1
+ realtimeGICPUUsage: 25
+ adaptiveVsyncExtraA: 0
+ adaptiveVsyncExtraB: 0
+ lodBias: 1
+ maximumLODLevel: 0
+ enableLODCrossFade: 1
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
+ particleRaycastBudget: 256
+ asyncUploadTimeSlice: 2
+ asyncUploadBufferSize: 16
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 11400000, guid: 3e2e6bfc59709614ab90c0cd7d755e48,
+ type: 2}
+ terrainQualityOverrides: 0
+ terrainPixelError: 1
+ terrainDetailDensityScale: 1
+ terrainBasemapDistance: 1000
+ terrainDetailDistance: 80
+ terrainTreeDistance: 5000
+ terrainBillboardStart: 50
+ terrainFadeLength: 5
+ terrainMaxTrees: 50
+ excludedTargetPlatforms: []
+ - serializedVersion: 4
+ name: Performant
+ pixelLightCount: 0
+ shadows: 2
+ shadowResolution: 0
+ shadowProjection: 1
+ shadowCascades: 1
+ shadowDistance: 15
+ shadowNearPlaneOffset: 3
+ shadowCascade2Split: 0.33333334
+ shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667}
+ shadowmaskMode: 1
+ skinWeights: 255
+ globalTextureMipmapLimit: 0
+ textureMipmapLimitSettings: []
+ anisotropicTextures: 2
+ antiAliasing: 0
+ softParticles: 0
+ softVegetation: 0
+ realtimeReflectionProbes: 0
+ billboardsFaceCameraPosition: 1
+ useLegacyDetailDistribution: 1
+ adaptiveVsync: 0
+ vSyncCount: 1
+ realtimeGICPUUsage: 25
+ adaptiveVsyncExtraA: 0
+ adaptiveVsyncExtraB: 0
+ lodBias: 1
+ maximumLODLevel: 0
+ enableLODCrossFade: 1
+ streamingMipmapsActive: 0
+ streamingMipmapsAddAllCameras: 1
+ streamingMipmapsMemoryBudget: 512
+ streamingMipmapsRenderersPerFrame: 512
+ streamingMipmapsMaxLevelReduction: 2
+ streamingMipmapsMaxFileIORequests: 1024
+ particleRaycastBudget: 256
+ asyncUploadTimeSlice: 2
+ asyncUploadBufferSize: 16
+ asyncUploadPersistentBuffer: 1
+ resolutionScalingFixedDPIFactor: 1
+ customRenderPipeline: {fileID: 11400000, guid: 168a2336534e4e043b2a210b6f8d379a,
+ type: 2}
+ terrainQualityOverrides: 0
+ terrainPixelError: 1
+ terrainDetailDensityScale: 1
+ terrainBasemapDistance: 1000
+ terrainDetailDistance: 80
+ terrainTreeDistance: 5000
+ terrainBillboardStart: 50
+ terrainFadeLength: 5
+ terrainMaxTrees: 50
+ excludedTargetPlatforms: []
+ m_TextureMipmapLimitGroupNames: []
+ m_PerPlatformDefaultQuality:
+ Android: 0
+ CloudRendering: 0
+ Lumin: 0
+ Nintendo Switch: 0
+ PS4: 0
+ Server: 0
+ Stadia: 0
+ Standalone: 0
+ WebGL: 0
+ Windows Store Apps: 0
+ XboxOne: 0
+ iPhone: 0
+ tvOS: 0
diff --git a/ProjectSettings/SceneTemplateSettings.json b/ProjectSettings/SceneTemplateSettings.json
new file mode 100644
index 0000000..ede5887
--- /dev/null
+++ b/ProjectSettings/SceneTemplateSettings.json
@@ -0,0 +1,121 @@
+{
+ "templatePinStates": [],
+ "dependencyTypeInfos": [
+ {
+ "userAdded": false,
+ "type": "UnityEngine.AnimationClip",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEditor.Animations.AnimatorController",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.AnimatorOverrideController",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEditor.Audio.AudioMixerController",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.ComputeShader",
+ "defaultInstantiationMode": 1
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Cubemap",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.GameObject",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEditor.LightingDataAsset",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.LightingSettings",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Material",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEditor.MonoScript",
+ "defaultInstantiationMode": 1
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.PhysicsMaterial",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.PhysicsMaterial2D",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Rendering.VolumeProfile",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEditor.SceneAsset",
+ "defaultInstantiationMode": 1
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Shader",
+ "defaultInstantiationMode": 1
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.ShaderVariantCollection",
+ "defaultInstantiationMode": 1
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Texture",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Texture2D",
+ "defaultInstantiationMode": 0
+ },
+ {
+ "userAdded": false,
+ "type": "UnityEngine.Timeline.TimelineAsset",
+ "defaultInstantiationMode": 0
+ }
+ ],
+ "defaultDependencyTypeInfo": {
+ "userAdded": false,
+ "type": "",
+ "defaultInstantiationMode": 1
+ },
+ "newSceneOverride": 0
+}
\ No newline at end of file
diff --git a/ProjectSettings/ShaderGraphSettings.asset b/ProjectSettings/ShaderGraphSettings.asset
new file mode 100644
index 0000000..ce8c243
--- /dev/null
+++ b/ProjectSettings/ShaderGraphSettings.asset
@@ -0,0 +1,19 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!114 &1
+MonoBehaviour:
+ m_ObjectHideFlags: 61
+ m_CorrespondingSourceObject: {fileID: 0}
+ m_PrefabInstance: {fileID: 0}
+ m_PrefabAsset: {fileID: 0}
+ m_GameObject: {fileID: 0}
+ m_Enabled: 1
+ m_EditorHideFlags: 0
+ m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3}
+ m_Name:
+ m_EditorClassIdentifier:
+ shaderVariantLimit: 128
+ overrideShaderVariantLimit: 0
+ customInterpolatorErrorThreshold: 32
+ customInterpolatorWarningThreshold: 16
+ customHeatmapValues: {fileID: 0}
diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset
new file mode 100644
index 0000000..e79656c
--- /dev/null
+++ b/ProjectSettings/TagManager.asset
@@ -0,0 +1,60 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!78 &1
+TagManager:
+ serializedVersion: 3
+ tags: []
+ layers:
+ - Default
+ - TransparentFX
+ - Ignore Raycast
+ -
+ - Water
+ - UI
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ -
+ m_SortingLayers:
+ - name: Default
+ uniqueID: 0
+ locked: 0
+ m_RenderingLayers:
+ - Default
+ - Light Layer 1
+ - Light Layer 2
+ - Light Layer 3
+ - Light Layer 4
+ - Light Layer 5
+ - Light Layer 6
+ - Light Layer 7
+ - Decal Layer default
+ - Decal Layer 1
+ - Decal Layer 2
+ - Decal Layer 3
+ - Decal Layer 4
+ - Decal Layer 5
+ - Decal Layer 6
+ - Decal Layer 7
diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset
new file mode 100644
index 0000000..558a017
--- /dev/null
+++ b/ProjectSettings/TimeManager.asset
@@ -0,0 +1,9 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!5 &1
+TimeManager:
+ m_ObjectHideFlags: 0
+ Fixed Timestep: 0.02
+ Maximum Allowed Timestep: 0.33333334
+ m_TimeScale: 1
+ Maximum Particle Timestep: 0.03
diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset
new file mode 100644
index 0000000..029ad8b
--- /dev/null
+++ b/ProjectSettings/UnityConnectSettings.asset
@@ -0,0 +1,40 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!310 &1
+UnityConnectSettings:
+ m_ObjectHideFlags: 0
+ serializedVersion: 1
+ m_Enabled: 0
+ m_TestMode: 0
+ m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events
+ m_EventUrl: https://cdp.cloud.unity3d.com/v1/events
+ m_ConfigUrl: https://config.uca.cloud.unity3d.com
+ m_DashboardUrl: https://dashboard.unity3d.com
+ m_TestInitMode: 0
+ InsightsSettings:
+ m_EngineDiagnosticsEnabled: 1
+ m_Enabled: 0
+ CrashReportingSettings:
+ serializedVersion: 2
+ m_EventUrl: https://perf-events.cloud.unity3d.com
+ m_EnableCloudDiagnosticsReporting: 0
+ m_LogBufferSize: 10
+ m_CaptureEditorExceptions: 1
+ UnityPurchasingSettings:
+ m_Enabled: 0
+ m_TestMode: 0
+ UnityAnalyticsSettings:
+ m_Enabled: 0
+ m_TestMode: 0
+ m_InitializeOnStartup: 1
+ m_PackageRequiringCoreStatsPresent: 0
+ UnityAdsSettings:
+ m_Enabled: 0
+ m_InitializeOnStartup: 1
+ m_TestMode: 0
+ m_IosGameId:
+ m_AndroidGameId:
+ m_GameIds: {}
+ m_GameId:
+ PerformanceReportingSettings:
+ m_Enabled: 0
diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset
new file mode 100644
index 0000000..c7a28f6
--- /dev/null
+++ b/ProjectSettings/VFXManager.asset
@@ -0,0 +1,20 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!937362698 &1
+VFXManager:
+ m_ObjectHideFlags: 0
+ m_IndirectShader: {fileID: 7200000, guid: 84a17cfa13e40ae4082ef42714f0a81c, type: 3}
+ m_CopyBufferShader: {fileID: 7200000, guid: 23c51f21a3503f6428b527b01f8a2f4e, type: 3}
+ m_PrefixSumShader: {fileID: 7200000, guid: 783e0fdc1a277f54bb851fd2ceab1e7f, type: 3}
+ m_SortShader: {fileID: 7200000, guid: ea257ca3cfb12a642a5025e612af6b2a, type: 3}
+ m_StripUpdateShader: {fileID: 7200000, guid: 8fa6c4009fe2a4d4486c62736fc30ad8, type: 3}
+ m_EmptyShader: {fileID: 4800000, guid: 33a2079f6a2db4c4eb2e44b33f4ddf6b, type: 3}
+ m_RenderPipeSettingsPath:
+ m_FixedTimeStep: 0.016666668
+ m_MaxDeltaTime: 0.05
+ m_MaxScrubTime: 30
+ m_MaxCapacity: 100000000
+ m_CompiledVersion: 7
+ m_RuntimeVersion: 38
+ m_RuntimeResources: {fileID: 11400000, guid: bc10b42afe3813544bffd38ae2cd893d, type: 2}
+ m_BatchEmptyLifetime: 300
diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset
new file mode 100644
index 0000000..dca2881
--- /dev/null
+++ b/ProjectSettings/VersionControlSettings.asset
@@ -0,0 +1,8 @@
+%YAML 1.1
+%TAG !u! tag:unity3d.com,2011:
+--- !u!890905787 &1
+VersionControlSettings:
+ m_ObjectHideFlags: 0
+ m_Mode: Visible Meta Files
+ m_CollabEditorSettings:
+ inProgressEnabled: 1
diff --git a/ProjectSettings/XRSettings.asset b/ProjectSettings/XRSettings.asset
new file mode 100644
index 0000000..482590c
--- /dev/null
+++ b/ProjectSettings/XRSettings.asset
@@ -0,0 +1,10 @@
+{
+ "m_SettingKeys": [
+ "VR Device Disabled",
+ "VR Device User Alert"
+ ],
+ "m_SettingValues": [
+ "False",
+ "False"
+ ]
+}
\ No newline at end of file
diff --git a/README.md b/README.md
deleted file mode 100644
index d75dae8..0000000
--- a/README.md
+++ /dev/null
@@ -1,2 +0,0 @@
-# swordgaem
-game with friends