Glow
This commit is contained in:
		
							
								
								
									
										79
									
								
								Assets/Neon.mat
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										79
									
								
								Assets/Neon.mat
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,79 @@ | ||||
| %YAML 1.1 | ||||
| %TAG !u! tag:unity3d.com,2011: | ||||
| --- !u!21 &2100000 | ||||
| Material: | ||||
|   serializedVersion: 6 | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_Name: Neon | ||||
|   m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} | ||||
|   m_ShaderKeywords: _EMISSION | ||||
|   m_LightmapFlags: 2 | ||||
|   m_EnableInstancingVariants: 0 | ||||
|   m_DoubleSidedGI: 0 | ||||
|   m_CustomRenderQueue: -1 | ||||
|   stringTagMap: {} | ||||
|   disabledShaderPasses: [] | ||||
|   m_SavedProperties: | ||||
|     serializedVersion: 3 | ||||
|     m_TexEnvs: | ||||
|     - _BumpMap: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     - _DetailAlbedoMap: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     - _DetailMask: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     - _DetailNormalMap: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     - _EmissionMap: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     - _MainTex: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     - _MetallicGlossMap: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     - _OcclusionMap: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     - _ParallaxMap: | ||||
|         m_Texture: {fileID: 0} | ||||
|         m_Scale: {x: 1, y: 1} | ||||
|         m_Offset: {x: 0, y: 0} | ||||
|     m_Ints: [] | ||||
|     m_Floats: | ||||
|     - _BumpScale: 1 | ||||
|     - _Cutoff: 0.5 | ||||
|     - _DetailNormalMapScale: 1 | ||||
|     - _DstBlend: 0 | ||||
|     - _GlossMapScale: 1 | ||||
|     - _Glossiness: 0.5 | ||||
|     - _GlossyReflections: 1 | ||||
|     - _Metallic: 0 | ||||
|     - _Mode: 0 | ||||
|     - _OcclusionStrength: 1 | ||||
|     - _Parallax: 0.02 | ||||
|     - _SmoothnessTextureChannel: 0 | ||||
|     - _SpecularHighlights: 1 | ||||
|     - _SrcBlend: 1 | ||||
|     - _UVSec: 0 | ||||
|     - _ZWrite: 1 | ||||
|     m_Colors: | ||||
|     - _Color: {r: 1, g: 1, b: 1, a: 1} | ||||
|     - _EmissionColor: {r: 5.9178705, g: 0.40349117, b: 5.6488767, a: 1} | ||||
|   m_BuildTextureStacks: [] | ||||
							
								
								
									
										8
									
								
								Assets/Neon.mat.meta
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								Assets/Neon.mat.meta
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | ||||
| fileFormatVersion: 2 | ||||
| guid: 5297bd56d67981941a51e3c544eb21b9 | ||||
| NativeFormatImporter: | ||||
|   externalObjects: {} | ||||
|   mainObjectFileID: 2100000 | ||||
|   userData:  | ||||
|   assetBundleName:  | ||||
|   assetBundleVariant:  | ||||
							
								
								
									
										43
									
								
								Assets/PostProcessingController.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								Assets/PostProcessingController.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,43 @@ | ||||
| using System.Collections; | ||||
| using System.Collections.Generic; | ||||
| using UnityEngine; | ||||
|  | ||||
| public class PostProcessingController : MonoBehaviour | ||||
| { | ||||
|     [ColorUsageAttribute(true, true)] public Color color; | ||||
|     public Renderer renderer; | ||||
|     public bool emissionUp = false; | ||||
|     private int emmisionStep = 0; | ||||
|     public int emmisionStepChange = 30; | ||||
|  | ||||
|     // Start is called before the first frame update | ||||
|     void Start() | ||||
|     { | ||||
|         color = renderer.material.GetColor("_EmissionColor"); | ||||
|     } | ||||
|  | ||||
|     // Update is called once per frame | ||||
|     void FixedUpdate() | ||||
|     { | ||||
|         if (emmisionStep < emmisionStepChange) | ||||
|         { | ||||
|             if (emissionUp) | ||||
|             { | ||||
|                 color += color * 0.01f; | ||||
|             } | ||||
|             else | ||||
|             { | ||||
|                 color -= color * 0.01f; | ||||
|             } | ||||
|         } | ||||
|         else | ||||
|         { | ||||
|             emissionUp = !emissionUp; | ||||
|             emmisionStep = 0; | ||||
|         } | ||||
|         emmisionStep++; | ||||
|  | ||||
|         renderer.material.SetColor("_EmissionColor", color); | ||||
|         Debug.Log(color); | ||||
|     } | ||||
| } | ||||
							
								
								
									
										11
									
								
								Assets/PostProcessingController.cs.meta
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								Assets/PostProcessingController.cs.meta
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| fileFormatVersion: 2 | ||||
| guid: f81168d5466126a439c5e406bfe5ce97 | ||||
| MonoImporter: | ||||
|   externalObjects: {} | ||||
|   serializedVersion: 2 | ||||
|   defaultReferences: [] | ||||
|   executionOrder: 0 | ||||
|   icon: {instanceID: 0} | ||||
|   userData:  | ||||
|   assetBundleName:  | ||||
|   assetBundleVariant:  | ||||
| @@ -123,6 +123,139 @@ NavMeshSettings: | ||||
|     debug: | ||||
|       m_Flags: 0 | ||||
|   m_NavMeshData: {fileID: 0} | ||||
| --- !u!1 &124415399 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   serializedVersion: 6 | ||||
|   m_Component: | ||||
|   - component: {fileID: 124415400} | ||||
|   - component: {fileID: 124415403} | ||||
|   - component: {fileID: 124415402} | ||||
|   - component: {fileID: 124415401} | ||||
|   m_Layer: 0 | ||||
|   m_Name: Cube (2) | ||||
|   m_TagString: Untagged | ||||
|   m_Icon: {fileID: 0} | ||||
|   m_NavMeshLayer: 0 | ||||
|   m_StaticEditorFlags: 0 | ||||
|   m_IsActive: 1 | ||||
| --- !u!4 &124415400 | ||||
| Transform: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 124415399} | ||||
|   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} | ||||
|   m_LocalPosition: {x: -92.17318, y: -58.608616, z: -25.228497} | ||||
|   m_LocalScale: {x: 6.7204876, y: 1.5078, z: 16.238924} | ||||
|   m_ConstrainProportionsScale: 0 | ||||
|   m_Children: [] | ||||
|   m_Father: {fileID: 327689121} | ||||
|   m_RootOrder: 2 | ||||
|   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||||
| --- !u!65 &124415401 | ||||
| BoxCollider: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 124415399} | ||||
|   m_Material: {fileID: 0} | ||||
|   m_IsTrigger: 0 | ||||
|   m_Enabled: 1 | ||||
|   serializedVersion: 2 | ||||
|   m_Size: {x: 1, y: 1, z: 1} | ||||
|   m_Center: {x: 0, y: 0, z: 0} | ||||
| --- !u!23 &124415402 | ||||
| MeshRenderer: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 124415399} | ||||
|   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_RenderingLayerMask: 1 | ||||
|   m_RendererPriority: 0 | ||||
|   m_Materials: | ||||
|   - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} | ||||
|   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_SortingLayerID: 0 | ||||
|   m_SortingLayer: 0 | ||||
|   m_SortingOrder: 0 | ||||
|   m_AdditionalVertexStreams: {fileID: 0} | ||||
| --- !u!33 &124415403 | ||||
| MeshFilter: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 124415399} | ||||
|   m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} | ||||
| --- !u!1 &327689120 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   serializedVersion: 6 | ||||
|   m_Component: | ||||
|   - component: {fileID: 327689121} | ||||
|   m_Layer: 0 | ||||
|   m_Name: Level | ||||
|   m_TagString: Untagged | ||||
|   m_Icon: {fileID: 0} | ||||
|   m_NavMeshLayer: 0 | ||||
|   m_StaticEditorFlags: 0 | ||||
|   m_IsActive: 1 | ||||
| --- !u!4 &327689121 | ||||
| Transform: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 327689120} | ||||
|   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} | ||||
|   m_LocalPosition: {x: 89.75318, y: 61.538616, z: 75.9285} | ||||
|   m_LocalScale: {x: 1, y: 1, z: 1} | ||||
|   m_ConstrainProportionsScale: 0 | ||||
|   m_Children: | ||||
|   - {fileID: 708734976} | ||||
|   - {fileID: 1429068746} | ||||
|   - {fileID: 124415400} | ||||
|   - {fileID: 2031243809} | ||||
|   - {fileID: 875163558} | ||||
|   m_Father: {fileID: 0} | ||||
|   m_RootOrder: 2 | ||||
|   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||||
| --- !u!1 &568358576 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
| @@ -183,7 +316,7 @@ Light: | ||||
|   serializedVersion: 10 | ||||
|   m_Type: 1 | ||||
|   m_Shape: 0 | ||||
|   m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} | ||||
|   m_Color: {r: 0.11320752, g: 0.10475472, b: 0.08170165, a: 1} | ||||
|   m_Intensity: 1 | ||||
|   m_Range: 10 | ||||
|   m_SpotAngle: 30 | ||||
| @@ -338,14 +471,111 @@ Transform: | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 708734972} | ||||
|   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} | ||||
|   m_LocalPosition: {x: -1.3092, y: 0.60207367, z: 5.0686} | ||||
|   m_LocalScale: {x: 23.818, y: 1.5078, z: 28.277014} | ||||
|   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} | ||||
|   m_LocalPosition: {x: -92.17318, y: -60.936543, z: -70.85989} | ||||
|   m_LocalScale: {x: 6.7204876, y: 1.5078, z: 16.238924} | ||||
|   m_ConstrainProportionsScale: 0 | ||||
|   m_Children: [] | ||||
|   m_Father: {fileID: 0} | ||||
|   m_RootOrder: 2 | ||||
|   m_Father: {fileID: 327689121} | ||||
|   m_RootOrder: 0 | ||||
|   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||||
| --- !u!1 &875163557 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   serializedVersion: 6 | ||||
|   m_Component: | ||||
|   - component: {fileID: 875163558} | ||||
|   - component: {fileID: 875163561} | ||||
|   - component: {fileID: 875163560} | ||||
|   - component: {fileID: 875163559} | ||||
|   m_Layer: 0 | ||||
|   m_Name: Cube (4) | ||||
|   m_TagString: Untagged | ||||
|   m_Icon: {fileID: 0} | ||||
|   m_NavMeshLayer: 0 | ||||
|   m_StaticEditorFlags: 0 | ||||
|   m_IsActive: 1 | ||||
| --- !u!4 &875163558 | ||||
| Transform: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 875163557} | ||||
|   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} | ||||
|   m_LocalPosition: {x: -92.17318, y: -58.608616, z: 18.7715} | ||||
|   m_LocalScale: {x: 6.7204876, y: 1.5078, z: 16.238924} | ||||
|   m_ConstrainProportionsScale: 0 | ||||
|   m_Children: [] | ||||
|   m_Father: {fileID: 327689121} | ||||
|   m_RootOrder: 4 | ||||
|   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||||
| --- !u!65 &875163559 | ||||
| BoxCollider: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 875163557} | ||||
|   m_Material: {fileID: 0} | ||||
|   m_IsTrigger: 0 | ||||
|   m_Enabled: 1 | ||||
|   serializedVersion: 2 | ||||
|   m_Size: {x: 1, y: 1, z: 1} | ||||
|   m_Center: {x: 0, y: 0, z: 0} | ||||
| --- !u!23 &875163560 | ||||
| MeshRenderer: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 875163557} | ||||
|   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_RenderingLayerMask: 1 | ||||
|   m_RendererPriority: 0 | ||||
|   m_Materials: | ||||
|   - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} | ||||
|   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_SortingLayerID: 0 | ||||
|   m_SortingLayer: 0 | ||||
|   m_SortingOrder: 0 | ||||
|   m_AdditionalVertexStreams: {fileID: 0} | ||||
| --- !u!33 &875163561 | ||||
| MeshFilter: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 875163557} | ||||
|   m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} | ||||
| --- !u!1 &963194225 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
| @@ -357,6 +587,7 @@ GameObject: | ||||
|   - component: {fileID: 963194228} | ||||
|   - component: {fileID: 963194227} | ||||
|   - component: {fileID: 963194226} | ||||
|   - component: {fileID: 963194229} | ||||
|   m_Layer: 0 | ||||
|   m_Name: Main Camera | ||||
|   m_TagString: MainCamera | ||||
| @@ -381,8 +612,8 @@ Camera: | ||||
|   m_GameObject: {fileID: 963194225} | ||||
|   m_Enabled: 1 | ||||
|   serializedVersion: 2 | ||||
|   m_ClearFlags: 1 | ||||
|   m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} | ||||
|   m_ClearFlags: 2 | ||||
|   m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0} | ||||
|   m_projectionMatrixMode: 1 | ||||
|   m_GateFitMode: 2 | ||||
|   m_FOVAxisMode: 0 | ||||
| @@ -430,6 +661,326 @@ Transform: | ||||
|   m_Father: {fileID: 2075500261} | ||||
|   m_RootOrder: 0 | ||||
|   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||||
| --- !u!114 &963194229 | ||||
| MonoBehaviour: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 963194225} | ||||
|   m_Enabled: 1 | ||||
|   m_EditorHideFlags: 0 | ||||
|   m_Script: {fileID: 11500000, guid: 948f4100a11a5c24981795d21301da5c, type: 3} | ||||
|   m_Name:  | ||||
|   m_EditorClassIdentifier:  | ||||
|   volumeTrigger: {fileID: 963194228} | ||||
|   volumeLayer: | ||||
|     serializedVersion: 2 | ||||
|     m_Bits: 2147483647 | ||||
|   stopNaNPropagation: 1 | ||||
|   finalBlitToCameraTarget: 0 | ||||
|   antialiasingMode: 0 | ||||
|   temporalAntialiasing: | ||||
|     jitterSpread: 0.75 | ||||
|     sharpness: 0.25 | ||||
|     stationaryBlending: 0.95 | ||||
|     motionBlending: 0.85 | ||||
|   subpixelMorphologicalAntialiasing: | ||||
|     quality: 2 | ||||
|   fastApproximateAntialiasing: | ||||
|     fastMode: 0 | ||||
|     keepAlpha: 0 | ||||
|   fog: | ||||
|     enabled: 1 | ||||
|     excludeSkybox: 1 | ||||
|   debugLayer: | ||||
|     lightMeter: | ||||
|       width: 512 | ||||
|       height: 256 | ||||
|       showCurves: 1 | ||||
|     histogram: | ||||
|       width: 512 | ||||
|       height: 256 | ||||
|       channel: 3 | ||||
|     waveform: | ||||
|       exposure: 0.12 | ||||
|       height: 256 | ||||
|     vectorscope: | ||||
|       size: 256 | ||||
|       exposure: 0.12 | ||||
|     overlaySettings: | ||||
|       linearDepth: 0 | ||||
|       motionColorIntensity: 4 | ||||
|       motionGridSize: 64 | ||||
|       colorBlindnessType: 0 | ||||
|       colorBlindnessStrength: 1 | ||||
|   m_Resources: {fileID: 11400000, guid: d82512f9c8e5d4a4d938b575d47f88d4, type: 2} | ||||
|   m_ShowToolkit: 0 | ||||
|   m_ShowCustomSorter: 0 | ||||
|   breakBeforeColorGrading: 0 | ||||
|   m_BeforeTransparentBundles: [] | ||||
|   m_BeforeStackBundles: [] | ||||
|   m_AfterStackBundles: [] | ||||
| --- !u!1 &1429068745 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   serializedVersion: 6 | ||||
|   m_Component: | ||||
|   - component: {fileID: 1429068746} | ||||
|   - component: {fileID: 1429068749} | ||||
|   - component: {fileID: 1429068748} | ||||
|   - component: {fileID: 1429068747} | ||||
|   - component: {fileID: 1429068750} | ||||
|   m_Layer: 0 | ||||
|   m_Name: Cube (1) | ||||
|   m_TagString: Untagged | ||||
|   m_Icon: {fileID: 0} | ||||
|   m_NavMeshLayer: 0 | ||||
|   m_StaticEditorFlags: 0 | ||||
|   m_IsActive: 1 | ||||
| --- !u!4 &1429068746 | ||||
| Transform: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 1429068745} | ||||
|   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} | ||||
|   m_LocalPosition: {x: -92.17318, y: -60.5, z: -48.028496} | ||||
|   m_LocalScale: {x: 6.7204876, y: 1.5078, z: 16.238924} | ||||
|   m_ConstrainProportionsScale: 0 | ||||
|   m_Children: [] | ||||
|   m_Father: {fileID: 327689121} | ||||
|   m_RootOrder: 1 | ||||
|   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||||
| --- !u!65 &1429068747 | ||||
| BoxCollider: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 1429068745} | ||||
|   m_Material: {fileID: 0} | ||||
|   m_IsTrigger: 0 | ||||
|   m_Enabled: 1 | ||||
|   serializedVersion: 2 | ||||
|   m_Size: {x: 1, y: 1, z: 1} | ||||
|   m_Center: {x: 0, y: 0, z: 0} | ||||
| --- !u!23 &1429068748 | ||||
| MeshRenderer: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 1429068745} | ||||
|   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_RenderingLayerMask: 1 | ||||
|   m_RendererPriority: 0 | ||||
|   m_Materials: | ||||
|   - {fileID: 2100000, guid: 5297bd56d67981941a51e3c544eb21b9, 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_SortingLayerID: 0 | ||||
|   m_SortingLayer: 0 | ||||
|   m_SortingOrder: 0 | ||||
|   m_AdditionalVertexStreams: {fileID: 0} | ||||
| --- !u!33 &1429068749 | ||||
| MeshFilter: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 1429068745} | ||||
|   m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} | ||||
| --- !u!114 &1429068750 | ||||
| MonoBehaviour: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 1429068745} | ||||
|   m_Enabled: 1 | ||||
|   m_EditorHideFlags: 0 | ||||
|   m_Script: {fileID: 11500000, guid: f81168d5466126a439c5e406bfe5ce97, type: 3} | ||||
|   m_Name:  | ||||
|   m_EditorClassIdentifier:  | ||||
|   color: {r: 0, g: 0, b: 0, a: 0} | ||||
|   renderer: {fileID: 1429068748} | ||||
|   emissionUp: 1 | ||||
|   emmisionStepChange: 40 | ||||
| --- !u!1 &1802677907 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   serializedVersion: 6 | ||||
|   m_Component: | ||||
|   - component: {fileID: 1802677909} | ||||
|   - component: {fileID: 1802677908} | ||||
|   m_Layer: 0 | ||||
|   m_Name: PostProcessing | ||||
|   m_TagString: Untagged | ||||
|   m_Icon: {fileID: 0} | ||||
|   m_NavMeshLayer: 0 | ||||
|   m_StaticEditorFlags: 0 | ||||
|   m_IsActive: 1 | ||||
| --- !u!114 &1802677908 | ||||
| MonoBehaviour: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 1802677907} | ||||
|   m_Enabled: 1 | ||||
|   m_EditorHideFlags: 0 | ||||
|   m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} | ||||
|   m_Name:  | ||||
|   m_EditorClassIdentifier:  | ||||
|   sharedProfile: {fileID: 11400000, guid: f7f74a1688e0cef4c9bff1208a17b21d, type: 2} | ||||
|   isGlobal: 1 | ||||
|   blendDistance: 0 | ||||
|   weight: 1 | ||||
|   priority: 0 | ||||
| --- !u!4 &1802677909 | ||||
| Transform: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 1802677907} | ||||
|   m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} | ||||
|   m_LocalPosition: {x: -14.754926, y: -10.308042, z: 20.176207} | ||||
|   m_LocalScale: {x: 1, y: 1, z: 1} | ||||
|   m_ConstrainProportionsScale: 0 | ||||
|   m_Children: [] | ||||
|   m_Father: {fileID: 0} | ||||
|   m_RootOrder: 3 | ||||
|   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||||
| --- !u!1 &2031243808 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   serializedVersion: 6 | ||||
|   m_Component: | ||||
|   - component: {fileID: 2031243809} | ||||
|   - component: {fileID: 2031243812} | ||||
|   - component: {fileID: 2031243811} | ||||
|   - component: {fileID: 2031243810} | ||||
|   m_Layer: 0 | ||||
|   m_Name: Cube (3) | ||||
|   m_TagString: Untagged | ||||
|   m_Icon: {fileID: 0} | ||||
|   m_NavMeshLayer: 0 | ||||
|   m_StaticEditorFlags: 0 | ||||
|   m_IsActive: 1 | ||||
| --- !u!4 &2031243809 | ||||
| Transform: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 2031243808} | ||||
|   m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} | ||||
|   m_LocalPosition: {x: -92.17318, y: -58.608616, z: -4.028496} | ||||
|   m_LocalScale: {x: 6.7204876, y: 1.5078, z: 16.238924} | ||||
|   m_ConstrainProportionsScale: 0 | ||||
|   m_Children: [] | ||||
|   m_Father: {fileID: 327689121} | ||||
|   m_RootOrder: 3 | ||||
|   m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} | ||||
| --- !u!65 &2031243810 | ||||
| BoxCollider: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 2031243808} | ||||
|   m_Material: {fileID: 0} | ||||
|   m_IsTrigger: 0 | ||||
|   m_Enabled: 1 | ||||
|   serializedVersion: 2 | ||||
|   m_Size: {x: 1, y: 1, z: 1} | ||||
|   m_Center: {x: 0, y: 0, z: 0} | ||||
| --- !u!23 &2031243811 | ||||
| MeshRenderer: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 2031243808} | ||||
|   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_RenderingLayerMask: 1 | ||||
|   m_RendererPriority: 0 | ||||
|   m_Materials: | ||||
|   - {fileID: 2100000, guid: 5297bd56d67981941a51e3c544eb21b9, 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_SortingLayerID: 0 | ||||
|   m_SortingLayer: 0 | ||||
|   m_SortingOrder: 0 | ||||
|   m_AdditionalVertexStreams: {fileID: 0} | ||||
| --- !u!33 &2031243812 | ||||
| MeshFilter: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   m_CorrespondingSourceObject: {fileID: 0} | ||||
|   m_PrefabInstance: {fileID: 0} | ||||
|   m_PrefabAsset: {fileID: 0} | ||||
|   m_GameObject: {fileID: 2031243808} | ||||
|   m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} | ||||
| --- !u!1 &2075500260 | ||||
| GameObject: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   | ||||
							
								
								
									
										8
									
								
								Assets/Scenes/SampleScene_Profiles.meta
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								Assets/Scenes/SampleScene_Profiles.meta
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | ||||
| fileFormatVersion: 2 | ||||
| guid: ce06459ca46bf394286b97304ea42be2 | ||||
| folderAsset: yes | ||||
| DefaultImporter: | ||||
|   externalObjects: {} | ||||
|   userData:  | ||||
|   assetBundleName:  | ||||
|   assetBundleVariant:  | ||||
							
								
								
									
										1375
									
								
								Assets/Scenes/SampleScene_Profiles/PostProcessing Profile.asset
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1375
									
								
								Assets/Scenes/SampleScene_Profiles/PostProcessing Profile.asset
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -0,0 +1,8 @@ | ||||
| fileFormatVersion: 2 | ||||
| guid: f7f74a1688e0cef4c9bff1208a17b21d | ||||
| NativeFormatImporter: | ||||
|   externalObjects: {} | ||||
|   mainObjectFileID: 11400000 | ||||
|   userData:  | ||||
|   assetBundleName:  | ||||
|   assetBundleVariant:  | ||||
| @@ -3,7 +3,7 @@ | ||||
| --- !u!129 &1 | ||||
| PlayerSettings: | ||||
|   m_ObjectHideFlags: 0 | ||||
|   serializedVersion: 22 | ||||
|   serializedVersion: 23 | ||||
|   productGUID: 69afab7e21038c148b2a87d81f8d17a4 | ||||
|   AndroidProfiler: 0 | ||||
|   AndroidFilterTouchesWhenObscured: 0 | ||||
| @@ -68,6 +68,12 @@ PlayerSettings: | ||||
|   androidRenderOutsideSafeArea: 1 | ||||
|   androidUseSwappy: 1 | ||||
|   androidBlitType: 0 | ||||
|   androidResizableWindow: 0 | ||||
|   androidDefaultWindowWidth: 1920 | ||||
|   androidDefaultWindowHeight: 1080 | ||||
|   androidMinimumWindowWidth: 400 | ||||
|   androidMinimumWindowHeight: 300 | ||||
|   androidFullscreenMode: 1 | ||||
|   defaultIsNativeResolution: 1 | ||||
|   macRetinaSupport: 1 | ||||
|   runInBackground: 1 | ||||
| @@ -121,6 +127,7 @@ PlayerSettings: | ||||
|   vulkanEnableSetSRGBWrite: 0 | ||||
|   vulkanEnablePreTransform: 0 | ||||
|   vulkanEnableLateAcquireNextImage: 0 | ||||
|   vulkanEnableCommandBufferRecycling: 1 | ||||
|   m_SupportedAspectRatios: | ||||
|     4:3: 1 | ||||
|     5:4: 1 | ||||
| @@ -152,7 +159,7 @@ PlayerSettings: | ||||
|     tvOS: 0 | ||||
|   overrideDefaultApplicationIdentifier: 0 | ||||
|   AndroidBundleVersionCode: 1 | ||||
|   AndroidMinSdkVersion: 19 | ||||
|   AndroidMinSdkVersion: 22 | ||||
|   AndroidTargetSdkVersion: 0 | ||||
|   AndroidPreferredInstallLocation: 1 | ||||
|   aotOptions:  | ||||
| @@ -208,6 +215,7 @@ PlayerSettings: | ||||
|   iOSLaunchScreeniPadCustomStoryboardPath:  | ||||
|   iOSDeviceRequirements: [] | ||||
|   iOSURLSchemes: [] | ||||
|   macOSURLSchemes: [] | ||||
|   iOSBackgroundModes: 0 | ||||
|   iOSMetalForceHardShadows: 0 | ||||
|   metalEditorSupport: 1 | ||||
| @@ -235,6 +243,7 @@ PlayerSettings: | ||||
|   useCustomGradlePropertiesTemplate: 0 | ||||
|   useCustomProguardFile: 0 | ||||
|   AndroidTargetArchitectures: 1 | ||||
|   AndroidTargetDevices: 0 | ||||
|   AndroidSplashScreenScale: 0 | ||||
|   androidSplashScreen: {fileID: 0} | ||||
|   AndroidKeystoreName:  | ||||
| @@ -251,6 +260,7 @@ PlayerSettings: | ||||
|     height: 180 | ||||
|     banner: {fileID: 0} | ||||
|   androidGamepadSupportLevel: 0 | ||||
|   chromeosInputEmulation: 1 | ||||
|   AndroidMinifyWithR8: 0 | ||||
|   AndroidMinifyRelease: 0 | ||||
|   AndroidMinifyDebug: 0 | ||||
| @@ -309,7 +319,7 @@ PlayerSettings: | ||||
|   m_BuildTargetGraphicsAPIs: | ||||
|   - m_BuildTarget: AndroidPlayer | ||||
|     m_APIs: 150000000b000000 | ||||
|     m_Automatic: 0 | ||||
|     m_Automatic: 1 | ||||
|   - m_BuildTarget: iOSSupport | ||||
|     m_APIs: 10000000 | ||||
|     m_Automatic: 1 | ||||
| @@ -336,6 +346,7 @@ PlayerSettings: | ||||
|   m_BuildTargetGroupLightmapEncodingQuality: [] | ||||
|   m_BuildTargetGroupLightmapSettings: [] | ||||
|   m_BuildTargetNormalMapEncoding: [] | ||||
|   m_BuildTargetDefaultTextureCompressionFormat: [] | ||||
|   playModeTestRunnerEnabled: 0 | ||||
|   runPlayModeTestAsEditModeTest: 0 | ||||
|   actionOnDotNetUnhandledException: 1 | ||||
| @@ -345,6 +356,7 @@ PlayerSettings: | ||||
|   cameraUsageDescription:  | ||||
|   locationUsageDescription:  | ||||
|   microphoneUsageDescription:  | ||||
|   bluetoothUsageDescription:  | ||||
|   switchNMETAOverride:  | ||||
|   switchNetLibKey:  | ||||
|   switchSocketMemoryPoolSize: 6144 | ||||
| @@ -353,6 +365,7 @@ PlayerSettings: | ||||
|   switchScreenResolutionBehavior: 2 | ||||
|   switchUseCPUProfiler: 0 | ||||
|   switchUseGOLDLinker: 0 | ||||
|   switchLTOSetting: 0 | ||||
|   switchApplicationID: 0x01004b9000490000 | ||||
|   switchNSODependencies:  | ||||
|   switchTitleNames_0:  | ||||
| @@ -483,7 +496,9 @@ PlayerSettings: | ||||
|   switchPlayerConnectionEnabled: 1 | ||||
|   switchUseNewStyleFilepaths: 0 | ||||
|   switchUseMicroSleepForYield: 1 | ||||
|   switchEnableRamDiskSupport: 0 | ||||
|   switchMicroSleepForYieldTime: 25 | ||||
|   switchRamDiskSpaceSize: 12 | ||||
|   ps4NPAgeRating: 12 | ||||
|   ps4NPTitleSecret:  | ||||
|   ps4NPTrophyPackPath:  | ||||
| @@ -554,7 +569,6 @@ PlayerSettings: | ||||
|   ps4videoRecordingFeaturesUsed: 0 | ||||
|   ps4contentSearchFeaturesUsed: 0 | ||||
|   ps4CompatibilityPS5: 0 | ||||
|   ps4AllowPS5Detection: 0 | ||||
|   ps4GPU800MHz: 1 | ||||
|   ps4attribEyeToEyeDistanceSettingVR: 0 | ||||
|   ps4IncludedModules: [] | ||||
| @@ -579,7 +593,21 @@ PlayerSettings: | ||||
|   webGLLinkerTarget: 1 | ||||
|   webGLThreadsSupport: 0 | ||||
|   webGLDecompressionFallback: 0 | ||||
|   scriptingDefineSymbols: {} | ||||
|   scriptingDefineSymbols: | ||||
|     Android: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     CloudRendering: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     EmbeddedLinux: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     GameCoreXboxOne: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     Lumin: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     Nintendo Switch: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     PS4: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     PS5: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     Stadia: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     Standalone: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     WebGL: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     Windows Store Apps: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     XboxOne: UNITY_POST_PROCESSING_STACK_V2 | ||||
|     tvOS: UNITY_POST_PROCESSING_STACK_V2 | ||||
|   additionalCompilerArguments: {} | ||||
|   platformArchitecture: {} | ||||
|   scriptingBackend: {} | ||||
| @@ -589,7 +617,6 @@ PlayerSettings: | ||||
|   suppressCommonWarnings: 1 | ||||
|   allowUnsafeCode: 0 | ||||
|   useDeterministicCompilation: 1 | ||||
|   useReferenceAssemblies: 1 | ||||
|   enableRoslynAnalyzers: 1 | ||||
|   additionalIl2CppArgs:  | ||||
|   scriptingRuntimeVersion: 1 | ||||
| @@ -675,4 +702,6 @@ PlayerSettings: | ||||
|   organizationId:  | ||||
|   cloudEnabled: 0 | ||||
|   legacyClampBlendShapeWeights: 0 | ||||
|   playerDataPath:  | ||||
|   forceSRGBBlit: 1 | ||||
|   virtualTexturingSupportEnabled: 0 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user