├── .gitattributes ├── .gitignore ├── Assets ├── Common.meta ├── Common │ ├── Checker.metatex │ ├── Checker.metatex.meta │ ├── DefaultVolume.asset │ ├── DefaultVolume.asset.meta │ ├── GlobalSettings.asset │ ├── GlobalSettings.asset.meta │ ├── Presets.meta │ ├── Presets │ │ ├── 17-270mm.asset │ │ ├── 17-270mm.asset.meta │ │ ├── 50mm.asset │ │ ├── 50mm.asset.meta │ │ ├── Anamorphic_Sci-Fi.asset │ │ ├── Anamorphic_Sci-Fi.asset.meta │ │ ├── Anamorphic_Sci-Fi2.asset │ │ ├── Anamorphic_Sci-Fi2.asset.meta │ │ ├── Anamorphic_Streak.asset │ │ ├── Anamorphic_Streak.asset.meta │ │ ├── Arena_80s.asset │ │ ├── Arena_80s.asset.meta │ │ ├── Caustic.asset │ │ ├── Caustic.asset.meta │ │ ├── Caustic2.asset │ │ ├── Caustic2.asset.meta │ │ ├── Sci-Fi.asset │ │ ├── Sci-Fi.asset.meta │ │ ├── Shapes.asset │ │ ├── Shapes.asset.meta │ │ ├── Simple.asset │ │ ├── Simple.asset.meta │ │ ├── Smartphone_Smudged.asset │ │ ├── Smartphone_Smudged.asset.meta │ │ ├── Sun.asset │ │ └── Sun.asset.meta │ ├── Renderer.asset │ ├── Renderer.asset.meta │ ├── URP.asset │ └── URP.asset.meta ├── FlashLight.meta ├── FlashLight │ ├── Flare.asset │ ├── Flare.asset.meta │ ├── FlashLight.unity │ ├── FlashLight.unity.meta │ ├── Floor.mat │ ├── Floor.mat.meta │ ├── Light.mat │ ├── Light.mat.meta │ ├── Postprocess.asset │ └── Postprocess.asset.meta ├── Helmet.meta ├── Helmet │ ├── DamagedHelmet.meta │ ├── DamagedHelmet │ │ ├── DamagedHelmet.glb │ │ ├── DamagedHelmet.glb.meta │ │ ├── README.txt │ │ └── README.txt.meta │ ├── Flare.asset │ ├── Flare.asset.meta │ ├── Floor.mat │ ├── Floor.mat.meta │ ├── Helmet.shadergraph │ ├── Helmet.shadergraph.meta │ ├── Helmet.unity │ ├── Helmet.unity.meta │ ├── Material_MR.mat │ ├── Material_MR.mat.meta │ ├── Postprocess.asset │ └── Postprocess.asset.meta ├── Outdoor.meta ├── Outdoor │ ├── Outdoor.unity │ ├── Outdoor.unity.meta │ ├── RendererSSAO.asset │ ├── RendererSSAO.asset.meta │ ├── Scene.asset │ ├── Scene.asset.meta │ ├── Skybox.mat │ ├── Skybox.mat.meta │ ├── Teapot.mat │ ├── Teapot.mat.meta │ ├── Teapot.metamesh │ ├── Teapot.metamesh.meta │ ├── Timeline.playable │ └── Timeline.playable.meta ├── Particles.meta ├── Particles │ ├── FlareBase.asset │ ├── FlareBase.asset.meta │ ├── FlareRotation.asset │ ├── FlareRotation.asset.meta │ ├── Particles.unity │ ├── Particles.unity.meta │ ├── Particles.vfx │ ├── Particles.vfx.meta │ ├── Postprocess.asset │ ├── Postprocess.asset.meta │ ├── Timeline.playable │ └── Timeline.playable.meta ├── Reflections.meta └── Reflections │ ├── Flare.asset │ ├── Flare.asset.meta │ ├── Floor.mat │ ├── Floor.mat.meta │ ├── Postprocess.asset │ ├── Postprocess.asset.meta │ ├── Reflections.unity │ ├── Reflections.unity.meta │ ├── Sphere.mat │ └── Sphere.mat.meta ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.asset ├── MultiplayerManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── SceneTemplateSettings.json ├── ShaderGraphSettings.asset ├── TagManager.asset ├── TimeManager.asset ├── TimelineSettings.asset ├── URPProjectSettings.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | 3 | *.cs text eol=lf diff=csharp 4 | *.shader text eol=lf 5 | *.cginc text eol=lf 6 | *.hlsl text eol=lf 7 | *.compute text eol=lf 8 | 9 | *.meta text eol=lf 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | Desktop.ini 3 | .DS_Store 4 | *.swp 5 | 6 | /Library 7 | /Logs 8 | /Recordings 9 | /Temp 10 | /UserSettings 11 | -------------------------------------------------------------------------------- /Assets/Common.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1756c2158330448308faa33b1fdc3d0f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Checker.metatex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/ScreenSpaceLensFlareTest/8a7213126302702ff553e70aac6a735a3baeec07/Assets/Common/Checker.metatex -------------------------------------------------------------------------------- /Assets/Common/Checker.metatex.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24720d25ad47749beb4b8e15a7c8bac6 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 1431cff934e074ba08d350fd0fc5be0d, type: 3} 11 | _dimensions: {x: 512, y: 512} 12 | _generator: 6 13 | _colormap: 0 14 | _color: {r: 0.5, g: 0.5, b: 0.5, a: 1} 15 | _color2: {r: 1, g: 1, b: 1, a: 1} 16 | _gradient: 17 | serializedVersion: 2 18 | key0: {r: 1, g: 1, b: 1, a: 1} 19 | key1: {r: 0.5, g: 0.5, b: 0.5, a: 0} 20 | key2: {r: 0, g: 0, b: 0, a: 0} 21 | key3: {r: 0, g: 0, b: 0, a: 0} 22 | key4: {r: 0, g: 0, b: 0, a: 0} 23 | key5: {r: 0, g: 0, b: 0, a: 0} 24 | key6: {r: 0, g: 0, b: 0, a: 0} 25 | key7: {r: 0, g: 0, b: 0, a: 0} 26 | ctime0: 0 27 | ctime1: 65535 28 | ctime2: 0 29 | ctime3: 0 30 | ctime4: 0 31 | ctime5: 0 32 | ctime6: 0 33 | ctime7: 0 34 | atime0: 0 35 | atime1: 65535 36 | atime2: 0 37 | atime3: 0 38 | atime4: 0 39 | atime5: 0 40 | atime6: 0 41 | atime7: 0 42 | mode: 0 43 | colorSpace: -1 44 | numColorKeys: 2 45 | numAlphaKeys: 2 46 | _scale: {x: 1, y: 1} 47 | _codepoint: 1f600 48 | _shader: {instanceID: 0} 49 | _material: {instanceID: 0} 50 | _wrapMode: 0 51 | _filterMode: 2 52 | _anisoLevel: 4 53 | _compression: 1 54 | _linear: 0 55 | -------------------------------------------------------------------------------- /Assets/Common/DefaultVolume.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38b0ad4d683ab4d859795afb25e5d720 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/GlobalSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce7ae65462ff54e3c860555fc238a103 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26e8dd837ea7e42f38ba1b4bab9c2a90 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/17-270mm.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f7e714931966449938e1e97907499634 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/50mm.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a8b7db83f8a9c4835ac1d003d5628a85 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Anamorphic_Sci-Fi.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 877e1507ae8d81c40bf1b94c1a86036f, type: 3} 13 | m_Name: Anamorphic_Sci-Fi 14 | m_EditorClassIdentifier: 15 | elements: 16 | - visible: 1 17 | position: 0 18 | positionOffset: {x: 0, y: 0} 19 | angularOffset: 0 20 | translationScale: {x: 1, y: 1} 21 | m_LocalIntensity: 1 22 | lensFlareTexture: {fileID: 0} 23 | uniformScale: 1 24 | sizeXY: {x: 90, y: 1} 25 | allowMultipleElement: 0 26 | m_Count: 5 27 | preserveAspectRatio: 0 28 | rotation: 0 29 | tint: {r: 1, g: 1, b: 1, a: 0.5} 30 | blendMode: 0 31 | autoRotate: 0 32 | flareType: 1 33 | modulateByLightColor: 1 34 | isFoldOpened: 0 35 | distribution: 0 36 | lengthSpread: 1 37 | positionCurve: 38 | serializedVersion: 2 39 | m_Curve: 40 | - serializedVersion: 3 41 | time: 0 42 | value: 0 43 | inSlope: 1 44 | outSlope: 1 45 | tangentMode: 0 46 | weightedMode: 0 47 | inWeight: 0 48 | outWeight: 0 49 | - serializedVersion: 3 50 | time: 1 51 | value: 1 52 | inSlope: 1 53 | outSlope: -1 54 | tangentMode: 0 55 | weightedMode: 0 56 | inWeight: 0 57 | outWeight: 0 58 | m_PreInfinity: 2 59 | m_PostInfinity: 2 60 | m_RotationOrder: 4 61 | scaleCurve: 62 | serializedVersion: 2 63 | m_Curve: 64 | - serializedVersion: 3 65 | time: 0 66 | value: 1 67 | inSlope: 0 68 | outSlope: 0 69 | tangentMode: 0 70 | weightedMode: 0 71 | inWeight: 0 72 | outWeight: 0 73 | - serializedVersion: 3 74 | time: 1 75 | value: 1 76 | inSlope: 0 77 | outSlope: 0 78 | tangentMode: 0 79 | weightedMode: 0 80 | inWeight: 0 81 | outWeight: 0 82 | m_PreInfinity: 2 83 | m_PostInfinity: 2 84 | m_RotationOrder: 4 85 | seed: 0 86 | colorGradient: 87 | serializedVersion: 2 88 | key0: {r: 1, g: 1, b: 1, a: 1} 89 | key1: {r: 1, g: 1, b: 1, a: 1} 90 | key2: {r: 0, g: 0, b: 0, a: 0} 91 | key3: {r: 0, g: 0, b: 0, a: 0} 92 | key4: {r: 0, g: 0, b: 0, a: 0} 93 | key5: {r: 0, g: 0, b: 0, a: 0} 94 | key6: {r: 0, g: 0, b: 0, a: 0} 95 | key7: {r: 0, g: 0, b: 0, a: 0} 96 | ctime0: 0 97 | ctime1: 65535 98 | ctime2: 0 99 | ctime3: 0 100 | ctime4: 0 101 | ctime5: 0 102 | ctime6: 0 103 | ctime7: 0 104 | atime0: 0 105 | atime1: 65535 106 | atime2: 0 107 | atime3: 0 108 | atime4: 0 109 | atime5: 0 110 | atime6: 0 111 | atime7: 0 112 | m_Mode: 0 113 | m_NumColorKeys: 2 114 | m_NumAlphaKeys: 2 115 | m_IntensityVariation: 0 116 | positionVariation: {x: 0, y: 0} 117 | scaleVariation: 0 118 | rotationVariation: 0 119 | enableRadialDistortion: 0 120 | targetSizeDistortion: {x: 1, y: 1} 121 | distortionCurve: 122 | serializedVersion: 2 123 | m_Curve: 124 | - serializedVersion: 3 125 | time: 0 126 | value: 0 127 | inSlope: 1 128 | outSlope: 1 129 | tangentMode: 0 130 | weightedMode: 0 131 | inWeight: 0 132 | outWeight: 0 133 | - serializedVersion: 3 134 | time: 1 135 | value: 1 136 | inSlope: 1 137 | outSlope: -1 138 | tangentMode: 0 139 | weightedMode: 0 140 | inWeight: 0 141 | outWeight: 0 142 | m_PreInfinity: 2 143 | m_PostInfinity: 2 144 | m_RotationOrder: 4 145 | distortionRelativeToCenter: 0 146 | m_FallOff: 0.596 147 | m_EdgeOffset: 0.798 148 | m_SideCount: 6 149 | m_SdfRoundness: 0 150 | inverseSDF: 0 151 | - visible: 1 152 | position: 0 153 | positionOffset: {x: 0, y: 0} 154 | angularOffset: 0 155 | translationScale: {x: 1, y: 1} 156 | m_LocalIntensity: 2.68 157 | lensFlareTexture: {fileID: 0} 158 | uniformScale: 13.28 159 | sizeXY: {x: 1.45, y: 1} 160 | allowMultipleElement: 0 161 | m_Count: 5 162 | preserveAspectRatio: 0 163 | rotation: 0 164 | tint: {r: 1, g: 1, b: 1, a: 0.5} 165 | blendMode: 0 166 | autoRotate: 0 167 | flareType: 1 168 | modulateByLightColor: 1 169 | isFoldOpened: 0 170 | distribution: 0 171 | lengthSpread: 1 172 | positionCurve: 173 | serializedVersion: 2 174 | m_Curve: 175 | - serializedVersion: 3 176 | time: 0 177 | value: 0 178 | inSlope: 1 179 | outSlope: 1 180 | tangentMode: 0 181 | weightedMode: 0 182 | inWeight: 0 183 | outWeight: 0 184 | - serializedVersion: 3 185 | time: 1 186 | value: 1 187 | inSlope: 1 188 | outSlope: -1 189 | tangentMode: 0 190 | weightedMode: 0 191 | inWeight: 0 192 | outWeight: 0 193 | m_PreInfinity: 2 194 | m_PostInfinity: 2 195 | m_RotationOrder: 4 196 | scaleCurve: 197 | serializedVersion: 2 198 | m_Curve: 199 | - serializedVersion: 3 200 | time: 0 201 | value: 1 202 | inSlope: 0 203 | outSlope: 0 204 | tangentMode: 0 205 | weightedMode: 0 206 | inWeight: 0 207 | outWeight: 0 208 | - serializedVersion: 3 209 | time: 1 210 | value: 1 211 | inSlope: 0 212 | outSlope: 0 213 | tangentMode: 0 214 | weightedMode: 0 215 | inWeight: 0 216 | outWeight: 0 217 | m_PreInfinity: 2 218 | m_PostInfinity: 2 219 | m_RotationOrder: 4 220 | seed: 0 221 | colorGradient: 222 | serializedVersion: 2 223 | key0: {r: 1, g: 1, b: 1, a: 1} 224 | key1: {r: 1, g: 1, b: 1, a: 1} 225 | key2: {r: 0, g: 0, b: 0, a: 0} 226 | key3: {r: 0, g: 0, b: 0, a: 0} 227 | key4: {r: 0, g: 0, b: 0, a: 0} 228 | key5: {r: 0, g: 0, b: 0, a: 0} 229 | key6: {r: 0, g: 0, b: 0, a: 0} 230 | key7: {r: 0, g: 0, b: 0, a: 0} 231 | ctime0: 0 232 | ctime1: 65535 233 | ctime2: 0 234 | ctime3: 0 235 | ctime4: 0 236 | ctime5: 0 237 | ctime6: 0 238 | ctime7: 0 239 | atime0: 0 240 | atime1: 65535 241 | atime2: 0 242 | atime3: 0 243 | atime4: 0 244 | atime5: 0 245 | atime6: 0 246 | atime7: 0 247 | m_Mode: 0 248 | m_NumColorKeys: 2 249 | m_NumAlphaKeys: 2 250 | m_IntensityVariation: 0 251 | positionVariation: {x: 0, y: 0} 252 | scaleVariation: 0 253 | rotationVariation: 0 254 | enableRadialDistortion: 0 255 | targetSizeDistortion: {x: 1, y: 1} 256 | distortionCurve: 257 | serializedVersion: 2 258 | m_Curve: 259 | - serializedVersion: 3 260 | time: 0 261 | value: 0 262 | inSlope: 1 263 | outSlope: 1 264 | tangentMode: 0 265 | weightedMode: 0 266 | inWeight: 0 267 | outWeight: 0 268 | - serializedVersion: 3 269 | time: 1 270 | value: 1 271 | inSlope: 1 272 | outSlope: -1 273 | tangentMode: 0 274 | weightedMode: 0 275 | inWeight: 0 276 | outWeight: 0 277 | m_PreInfinity: 2 278 | m_PostInfinity: 2 279 | m_RotationOrder: 4 280 | distortionRelativeToCenter: 0 281 | m_FallOff: 0.533 282 | m_EdgeOffset: 1 283 | m_SideCount: 6 284 | m_SdfRoundness: 0 285 | inverseSDF: 0 286 | - visible: 1 287 | position: 0 288 | positionOffset: {x: 0, y: 0} 289 | angularOffset: 0 290 | translationScale: {x: 1, y: 1} 291 | m_LocalIntensity: 1 292 | lensFlareTexture: {fileID: 2800000, guid: 57bb5846aaf6f144d99efd4f8439bb63, type: 3} 293 | uniformScale: 1 294 | sizeXY: {x: 8.6, y: 20} 295 | allowMultipleElement: 0 296 | m_Count: 5 297 | preserveAspectRatio: 0 298 | rotation: 35.42 299 | tint: {r: 1, g: 1, b: 1, a: 0.5} 300 | blendMode: 0 301 | autoRotate: 0 302 | flareType: 0 303 | modulateByLightColor: 1 304 | isFoldOpened: 1 305 | distribution: 0 306 | lengthSpread: 1 307 | positionCurve: 308 | serializedVersion: 2 309 | m_Curve: 310 | - serializedVersion: 3 311 | time: 0 312 | value: 0 313 | inSlope: 1 314 | outSlope: 1 315 | tangentMode: 0 316 | weightedMode: 0 317 | inWeight: 0 318 | outWeight: 0 319 | - serializedVersion: 3 320 | time: 1 321 | value: 1 322 | inSlope: 1 323 | outSlope: -1 324 | tangentMode: 0 325 | weightedMode: 0 326 | inWeight: 0 327 | outWeight: 0 328 | m_PreInfinity: 2 329 | m_PostInfinity: 2 330 | m_RotationOrder: 4 331 | scaleCurve: 332 | serializedVersion: 2 333 | m_Curve: 334 | - serializedVersion: 3 335 | time: 0 336 | value: 1 337 | inSlope: 0 338 | outSlope: 0 339 | tangentMode: 0 340 | weightedMode: 0 341 | inWeight: 0 342 | outWeight: 0 343 | - serializedVersion: 3 344 | time: 1 345 | value: 1 346 | inSlope: 0 347 | outSlope: 0 348 | tangentMode: 0 349 | weightedMode: 0 350 | inWeight: 0 351 | outWeight: 0 352 | m_PreInfinity: 2 353 | m_PostInfinity: 2 354 | m_RotationOrder: 4 355 | seed: 0 356 | colorGradient: 357 | serializedVersion: 2 358 | key0: {r: 1, g: 1, b: 1, a: 1} 359 | key1: {r: 1, g: 1, b: 1, a: 1} 360 | key2: {r: 0, g: 0, b: 0, a: 0} 361 | key3: {r: 0, g: 0, b: 0, a: 0} 362 | key4: {r: 0, g: 0, b: 0, a: 0} 363 | key5: {r: 0, g: 0, b: 0, a: 0} 364 | key6: {r: 0, g: 0, b: 0, a: 0} 365 | key7: {r: 0, g: 0, b: 0, a: 0} 366 | ctime0: 0 367 | ctime1: 65535 368 | ctime2: 0 369 | ctime3: 0 370 | ctime4: 0 371 | ctime5: 0 372 | ctime6: 0 373 | ctime7: 0 374 | atime0: 0 375 | atime1: 65535 376 | atime2: 0 377 | atime3: 0 378 | atime4: 0 379 | atime5: 0 380 | atime6: 0 381 | atime7: 0 382 | m_Mode: 0 383 | m_NumColorKeys: 2 384 | m_NumAlphaKeys: 2 385 | m_IntensityVariation: 0 386 | positionVariation: {x: 0, y: 0} 387 | scaleVariation: 0 388 | rotationVariation: 0 389 | enableRadialDistortion: 0 390 | targetSizeDistortion: {x: 1, y: 1} 391 | distortionCurve: 392 | serializedVersion: 2 393 | m_Curve: 394 | - serializedVersion: 3 395 | time: 0 396 | value: 0 397 | inSlope: 1 398 | outSlope: 1 399 | tangentMode: 0 400 | weightedMode: 0 401 | inWeight: 0 402 | outWeight: 0 403 | - serializedVersion: 3 404 | time: 1 405 | value: 1 406 | inSlope: 1 407 | outSlope: -1 408 | tangentMode: 0 409 | weightedMode: 0 410 | inWeight: 0 411 | outWeight: 0 412 | m_PreInfinity: 2 413 | m_PostInfinity: 2 414 | m_RotationOrder: 4 415 | distortionRelativeToCenter: 0 416 | m_FallOff: 1 417 | m_EdgeOffset: 0.1 418 | m_SideCount: 6 419 | m_SdfRoundness: 0 420 | inverseSDF: 0 421 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Anamorphic_Sci-Fi.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf0f5a43e97c04cc390b534001715eb2 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Anamorphic_Sci-Fi2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6ea69a3b6dca24c8b8defffd0de4585b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Anamorphic_Streak.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 877e1507ae8d81c40bf1b94c1a86036f, type: 3} 13 | m_Name: Anamorphic_Streak 14 | m_EditorClassIdentifier: 15 | elements: 16 | - position: 0 17 | positionOffset: {x: 0, y: 0} 18 | angularOffset: 0 19 | translationScale: {x: 1, y: 1} 20 | m_LocalIntensity: 1 21 | lensFlareTexture: {fileID: 0} 22 | uniformScale: 1 23 | sizeXY: {x: 160, y: 1.5} 24 | allowMultipleElement: 0 25 | m_Count: 5 26 | preserveAspectRatio: 0 27 | rotation: 0 28 | tint: {r: 1, g: 1, b: 1, a: 0.5} 29 | blendMode: 0 30 | autoRotate: 0 31 | flareType: 1 32 | modulateByLightColor: 1 33 | isFoldOpened: 0 34 | distribution: 0 35 | lengthSpread: 1 36 | positionCurve: 37 | serializedVersion: 2 38 | m_Curve: 39 | - serializedVersion: 3 40 | time: 0 41 | value: 0 42 | inSlope: 1 43 | outSlope: 1 44 | tangentMode: 0 45 | weightedMode: 0 46 | inWeight: 0 47 | outWeight: 0 48 | - serializedVersion: 3 49 | time: 1 50 | value: 1 51 | inSlope: 1 52 | outSlope: -1 53 | tangentMode: 0 54 | weightedMode: 0 55 | inWeight: 0 56 | outWeight: 0 57 | m_PreInfinity: 2 58 | m_PostInfinity: 2 59 | m_RotationOrder: 4 60 | scaleCurve: 61 | serializedVersion: 2 62 | m_Curve: 63 | - serializedVersion: 3 64 | time: 0 65 | value: 1 66 | inSlope: 0 67 | outSlope: 0 68 | tangentMode: 0 69 | weightedMode: 0 70 | inWeight: 0 71 | outWeight: 0 72 | - serializedVersion: 3 73 | time: 1 74 | value: 1 75 | inSlope: 0 76 | outSlope: 0 77 | tangentMode: 0 78 | weightedMode: 0 79 | inWeight: 0 80 | outWeight: 0 81 | m_PreInfinity: 2 82 | m_PostInfinity: 2 83 | m_RotationOrder: 4 84 | seed: 0 85 | colorGradient: 86 | serializedVersion: 2 87 | key0: {r: 1, g: 1, b: 1, a: 1} 88 | key1: {r: 1, g: 1, b: 1, a: 1} 89 | key2: {r: 0, g: 0, b: 0, a: 0} 90 | key3: {r: 0, g: 0, b: 0, a: 0} 91 | key4: {r: 0, g: 0, b: 0, a: 0} 92 | key5: {r: 0, g: 0, b: 0, a: 0} 93 | key6: {r: 0, g: 0, b: 0, a: 0} 94 | key7: {r: 0, g: 0, b: 0, a: 0} 95 | ctime0: 0 96 | ctime1: 65535 97 | ctime2: 0 98 | ctime3: 0 99 | ctime4: 0 100 | ctime5: 0 101 | ctime6: 0 102 | ctime7: 0 103 | atime0: 0 104 | atime1: 65535 105 | atime2: 0 106 | atime3: 0 107 | atime4: 0 108 | atime5: 0 109 | atime6: 0 110 | atime7: 0 111 | m_Mode: 0 112 | m_NumColorKeys: 2 113 | m_NumAlphaKeys: 2 114 | m_IntensityVariation: 0 115 | positionVariation: {x: 0, y: 0} 116 | scaleVariation: 0 117 | rotationVariation: 0 118 | enableRadialDistortion: 0 119 | targetSizeDistortion: {x: 1, y: 1} 120 | distortionCurve: 121 | serializedVersion: 2 122 | m_Curve: 123 | - serializedVersion: 3 124 | time: 0 125 | value: 0 126 | inSlope: 1 127 | outSlope: 1 128 | tangentMode: 0 129 | weightedMode: 0 130 | inWeight: 0 131 | outWeight: 0 132 | - serializedVersion: 3 133 | time: 1 134 | value: 1 135 | inSlope: 1 136 | outSlope: -1 137 | tangentMode: 0 138 | weightedMode: 0 139 | inWeight: 0 140 | outWeight: 0 141 | m_PreInfinity: 2 142 | m_PostInfinity: 2 143 | m_RotationOrder: 4 144 | distortionRelativeToCenter: 0 145 | m_FallOff: 0.579 146 | m_EdgeOffset: 1 147 | m_SideCount: 6 148 | m_SdfRoundness: 0 149 | inverseSDF: 0 150 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Anamorphic_Streak.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f8c53972784cf40f0b584875ae5f944b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Arena_80s.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 877e1507ae8d81c40bf1b94c1a86036f, type: 3} 13 | m_Name: Arena_80s 14 | m_EditorClassIdentifier: 15 | elements: 16 | - visible: 1 17 | position: 0 18 | positionOffset: {x: 0, y: 0} 19 | angularOffset: 0 20 | translationScale: {x: 1, y: 1} 21 | m_LocalIntensity: 1 22 | lensFlareTexture: {fileID: 2800000, guid: fc0e248a658684c3e8fe68d5931552b9, type: 3} 23 | uniformScale: 6.5 24 | sizeXY: {x: 1, y: 1} 25 | allowMultipleElement: 0 26 | m_Count: 5 27 | preserveAspectRatio: 0 28 | rotation: 16.46 29 | tint: {r: 1, g: 1, b: 1, a: 0.5} 30 | blendMode: 0 31 | autoRotate: 0 32 | flareType: 0 33 | modulateByLightColor: 1 34 | isFoldOpened: 1 35 | distribution: 0 36 | lengthSpread: 1 37 | positionCurve: 38 | serializedVersion: 2 39 | m_Curve: 40 | - serializedVersion: 3 41 | time: 0 42 | value: 0 43 | inSlope: 1 44 | outSlope: 1 45 | tangentMode: 0 46 | weightedMode: 0 47 | inWeight: 0 48 | outWeight: 0 49 | - serializedVersion: 3 50 | time: 1 51 | value: 1 52 | inSlope: 1 53 | outSlope: -1 54 | tangentMode: 0 55 | weightedMode: 0 56 | inWeight: 0 57 | outWeight: 0 58 | m_PreInfinity: 2 59 | m_PostInfinity: 2 60 | m_RotationOrder: 4 61 | scaleCurve: 62 | serializedVersion: 2 63 | m_Curve: 64 | - serializedVersion: 3 65 | time: 0 66 | value: 1 67 | inSlope: 0 68 | outSlope: 0 69 | tangentMode: 0 70 | weightedMode: 0 71 | inWeight: 0 72 | outWeight: 0 73 | - serializedVersion: 3 74 | time: 1 75 | value: 1 76 | inSlope: 0 77 | outSlope: 0 78 | tangentMode: 0 79 | weightedMode: 0 80 | inWeight: 0 81 | outWeight: 0 82 | m_PreInfinity: 2 83 | m_PostInfinity: 2 84 | m_RotationOrder: 4 85 | seed: 0 86 | colorGradient: 87 | serializedVersion: 2 88 | key0: {r: 1, g: 1, b: 1, a: 1} 89 | key1: {r: 1, g: 1, b: 1, a: 1} 90 | key2: {r: 0, g: 0, b: 0, a: 0} 91 | key3: {r: 0, g: 0, b: 0, a: 0} 92 | key4: {r: 0, g: 0, b: 0, a: 0} 93 | key5: {r: 0, g: 0, b: 0, a: 0} 94 | key6: {r: 0, g: 0, b: 0, a: 0} 95 | key7: {r: 0, g: 0, b: 0, a: 0} 96 | ctime0: 0 97 | ctime1: 65535 98 | ctime2: 0 99 | ctime3: 0 100 | ctime4: 0 101 | ctime5: 0 102 | ctime6: 0 103 | ctime7: 0 104 | atime0: 0 105 | atime1: 65535 106 | atime2: 0 107 | atime3: 0 108 | atime4: 0 109 | atime5: 0 110 | atime6: 0 111 | atime7: 0 112 | m_Mode: 0 113 | m_NumColorKeys: 2 114 | m_NumAlphaKeys: 2 115 | m_IntensityVariation: 0 116 | positionVariation: {x: 0, y: 0} 117 | scaleVariation: 0 118 | rotationVariation: 0 119 | enableRadialDistortion: 0 120 | targetSizeDistortion: {x: 1, y: 1} 121 | distortionCurve: 122 | serializedVersion: 2 123 | m_Curve: 124 | - serializedVersion: 3 125 | time: 0 126 | value: 0 127 | inSlope: 1 128 | outSlope: 1 129 | tangentMode: 0 130 | weightedMode: 0 131 | inWeight: 0 132 | outWeight: 0 133 | - serializedVersion: 3 134 | time: 1 135 | value: 1 136 | inSlope: 1 137 | outSlope: -1 138 | tangentMode: 0 139 | weightedMode: 0 140 | inWeight: 0 141 | outWeight: 0 142 | m_PreInfinity: 2 143 | m_PostInfinity: 2 144 | m_RotationOrder: 4 145 | distortionRelativeToCenter: 0 146 | m_FallOff: 1 147 | m_EdgeOffset: 0.1 148 | m_SideCount: 6 149 | m_SdfRoundness: 0 150 | inverseSDF: 0 151 | - visible: 1 152 | position: 0 153 | positionOffset: {x: 0, y: 0} 154 | angularOffset: 0 155 | translationScale: {x: 1, y: 1} 156 | m_LocalIntensity: 0.5 157 | lensFlareTexture: {fileID: 0} 158 | uniformScale: 8.66 159 | sizeXY: {x: 1, y: 1} 160 | allowMultipleElement: 0 161 | m_Count: 5 162 | preserveAspectRatio: 0 163 | rotation: 0 164 | tint: {r: 1, g: 1, b: 1, a: 0.5} 165 | blendMode: 0 166 | autoRotate: 0 167 | flareType: 1 168 | modulateByLightColor: 1 169 | isFoldOpened: 0 170 | distribution: 0 171 | lengthSpread: 1 172 | positionCurve: 173 | serializedVersion: 2 174 | m_Curve: 175 | - serializedVersion: 3 176 | time: 0 177 | value: 0 178 | inSlope: 1 179 | outSlope: 1 180 | tangentMode: 0 181 | weightedMode: 0 182 | inWeight: 0 183 | outWeight: 0 184 | - serializedVersion: 3 185 | time: 1 186 | value: 1 187 | inSlope: 1 188 | outSlope: -1 189 | tangentMode: 0 190 | weightedMode: 0 191 | inWeight: 0 192 | outWeight: 0 193 | m_PreInfinity: 2 194 | m_PostInfinity: 2 195 | m_RotationOrder: 4 196 | scaleCurve: 197 | serializedVersion: 2 198 | m_Curve: 199 | - serializedVersion: 3 200 | time: 0 201 | value: 1 202 | inSlope: 0 203 | outSlope: 0 204 | tangentMode: 0 205 | weightedMode: 0 206 | inWeight: 0 207 | outWeight: 0 208 | - serializedVersion: 3 209 | time: 1 210 | value: 1 211 | inSlope: 0 212 | outSlope: 0 213 | tangentMode: 0 214 | weightedMode: 0 215 | inWeight: 0 216 | outWeight: 0 217 | m_PreInfinity: 2 218 | m_PostInfinity: 2 219 | m_RotationOrder: 4 220 | seed: 0 221 | colorGradient: 222 | serializedVersion: 2 223 | key0: {r: 1, g: 1, b: 1, a: 1} 224 | key1: {r: 1, g: 1, b: 1, a: 1} 225 | key2: {r: 0, g: 0, b: 0, a: 0} 226 | key3: {r: 0, g: 0, b: 0, a: 0} 227 | key4: {r: 0, g: 0, b: 0, a: 0} 228 | key5: {r: 0, g: 0, b: 0, a: 0} 229 | key6: {r: 0, g: 0, b: 0, a: 0} 230 | key7: {r: 0, g: 0, b: 0, a: 0} 231 | ctime0: 0 232 | ctime1: 65535 233 | ctime2: 0 234 | ctime3: 0 235 | ctime4: 0 236 | ctime5: 0 237 | ctime6: 0 238 | ctime7: 0 239 | atime0: 0 240 | atime1: 65535 241 | atime2: 0 242 | atime3: 0 243 | atime4: 0 244 | atime5: 0 245 | atime6: 0 246 | atime7: 0 247 | m_Mode: 0 248 | m_NumColorKeys: 2 249 | m_NumAlphaKeys: 2 250 | m_IntensityVariation: 0 251 | positionVariation: {x: 0, y: 0} 252 | scaleVariation: 0 253 | rotationVariation: 0 254 | enableRadialDistortion: 0 255 | targetSizeDistortion: {x: 1, y: 1} 256 | distortionCurve: 257 | serializedVersion: 2 258 | m_Curve: 259 | - serializedVersion: 3 260 | time: 0 261 | value: 0 262 | inSlope: 1 263 | outSlope: 1 264 | tangentMode: 0 265 | weightedMode: 0 266 | inWeight: 0 267 | outWeight: 0 268 | - serializedVersion: 3 269 | time: 1 270 | value: 1 271 | inSlope: 1 272 | outSlope: -1 273 | tangentMode: 0 274 | weightedMode: 0 275 | inWeight: 0 276 | outWeight: 0 277 | m_PreInfinity: 2 278 | m_PostInfinity: 2 279 | m_RotationOrder: 4 280 | distortionRelativeToCenter: 0 281 | m_FallOff: 0.697 282 | m_EdgeOffset: 1 283 | m_SideCount: 6 284 | m_SdfRoundness: 0 285 | inverseSDF: 0 286 | - visible: 1 287 | position: 0 288 | positionOffset: {x: 0, y: 0} 289 | angularOffset: 0 290 | translationScale: {x: 1, y: 1} 291 | m_LocalIntensity: 1 292 | lensFlareTexture: {fileID: 0} 293 | uniformScale: 1 294 | sizeXY: {x: 0.4, y: 14.76} 295 | allowMultipleElement: 1 296 | m_Count: 2 297 | preserveAspectRatio: 0 298 | rotation: 12.3 299 | tint: {r: 1, g: 1, b: 1, a: 0.5} 300 | blendMode: 0 301 | autoRotate: 0 302 | flareType: 1 303 | modulateByLightColor: 1 304 | isFoldOpened: 0 305 | distribution: 2 306 | lengthSpread: 0 307 | positionCurve: 308 | serializedVersion: 2 309 | m_Curve: 310 | - serializedVersion: 3 311 | time: 0 312 | value: 0 313 | inSlope: 1 314 | outSlope: 1 315 | tangentMode: 0 316 | weightedMode: 0 317 | inWeight: 0 318 | outWeight: 0 319 | - serializedVersion: 3 320 | time: 1 321 | value: 1 322 | inSlope: 1 323 | outSlope: -1 324 | tangentMode: 0 325 | weightedMode: 0 326 | inWeight: 0 327 | outWeight: 0 328 | m_PreInfinity: 2 329 | m_PostInfinity: 2 330 | m_RotationOrder: 4 331 | scaleCurve: 332 | serializedVersion: 2 333 | m_Curve: 334 | - serializedVersion: 3 335 | time: 0 336 | value: 1 337 | inSlope: 0 338 | outSlope: 0 339 | tangentMode: 0 340 | weightedMode: 0 341 | inWeight: 0 342 | outWeight: 0 343 | - serializedVersion: 3 344 | time: 1 345 | value: 1 346 | inSlope: 0 347 | outSlope: 0 348 | tangentMode: 0 349 | weightedMode: 0 350 | inWeight: 0 351 | outWeight: 0 352 | m_PreInfinity: 2 353 | m_PostInfinity: 2 354 | m_RotationOrder: 4 355 | seed: 0 356 | colorGradient: 357 | serializedVersion: 2 358 | key0: {r: 1, g: 1, b: 1, a: 1} 359 | key1: {r: 1, g: 1, b: 1, a: 1} 360 | key2: {r: 0, g: 0, b: 0, a: 0} 361 | key3: {r: 0, g: 0, b: 0, a: 0} 362 | key4: {r: 0, g: 0, b: 0, a: 0} 363 | key5: {r: 0, g: 0, b: 0, a: 0} 364 | key6: {r: 0, g: 0, b: 0, a: 0} 365 | key7: {r: 0, g: 0, b: 0, a: 0} 366 | ctime0: 0 367 | ctime1: 65535 368 | ctime2: 0 369 | ctime3: 0 370 | ctime4: 0 371 | ctime5: 0 372 | ctime6: 0 373 | ctime7: 0 374 | atime0: 0 375 | atime1: 65535 376 | atime2: 0 377 | atime3: 0 378 | atime4: 0 379 | atime5: 0 380 | atime6: 0 381 | atime7: 0 382 | m_Mode: 0 383 | m_NumColorKeys: 2 384 | m_NumAlphaKeys: 2 385 | m_IntensityVariation: 0 386 | positionVariation: {x: 0, y: 0} 387 | scaleVariation: 0 388 | rotationVariation: 23.98 389 | enableRadialDistortion: 0 390 | targetSizeDistortion: {x: 1, y: 1} 391 | distortionCurve: 392 | serializedVersion: 2 393 | m_Curve: 394 | - serializedVersion: 3 395 | time: 0 396 | value: 0 397 | inSlope: 1 398 | outSlope: 1 399 | tangentMode: 0 400 | weightedMode: 0 401 | inWeight: 0 402 | outWeight: 0 403 | - serializedVersion: 3 404 | time: 1 405 | value: 1 406 | inSlope: 1 407 | outSlope: -1 408 | tangentMode: 0 409 | weightedMode: 0 410 | inWeight: 0 411 | outWeight: 0 412 | m_PreInfinity: 2 413 | m_PostInfinity: 2 414 | m_RotationOrder: 4 415 | distortionRelativeToCenter: 0 416 | m_FallOff: 0.641 417 | m_EdgeOffset: 0.8 418 | m_SideCount: 6 419 | m_SdfRoundness: 0 420 | inverseSDF: 0 421 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Arena_80s.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a65d7c096f124bd78c6783701a6588e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Caustic.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 877e1507ae8d81c40bf1b94c1a86036f, type: 3} 13 | m_Name: Caustic 14 | m_EditorClassIdentifier: 15 | elements: 16 | - position: 1 17 | positionOffset: {x: 0, y: 0} 18 | angularOffset: 0 19 | translationScale: {x: 1, y: 1} 20 | localIntensity: 1 21 | lensFlareTexture: {fileID: 0} 22 | uniformScale: 0.2 23 | sizeXY: {x: 0.5, y: 0.5} 24 | allowMultipleElement: 0 25 | count: 5 26 | preserveAspectRatio: 0 27 | rotation: 0 28 | tint: {r: 0.3820755, g: 1, b: 0.5298769, a: 0.5} 29 | blendMode: 0 30 | autoRotate: 0 31 | flareType: 1 32 | modulateByLightColor: 0 33 | isFoldOpened: 0 34 | distribution: 0 35 | lengthSpread: 1 36 | positionCurve: 37 | serializedVersion: 2 38 | m_Curve: 39 | - serializedVersion: 3 40 | time: 0 41 | value: 0 42 | inSlope: 1 43 | outSlope: 1 44 | tangentMode: 0 45 | weightedMode: 0 46 | inWeight: 0 47 | outWeight: 0 48 | - serializedVersion: 3 49 | time: 1 50 | value: 1 51 | inSlope: 1 52 | outSlope: -1 53 | tangentMode: 0 54 | weightedMode: 0 55 | inWeight: 0 56 | outWeight: 0 57 | m_PreInfinity: 2 58 | m_PostInfinity: 2 59 | m_RotationOrder: 4 60 | scaleCurve: 61 | serializedVersion: 2 62 | m_Curve: 63 | - serializedVersion: 3 64 | time: 0 65 | value: 1 66 | inSlope: 0 67 | outSlope: 0 68 | tangentMode: 0 69 | weightedMode: 0 70 | inWeight: 0 71 | outWeight: 0 72 | - serializedVersion: 3 73 | time: 1 74 | value: 1 75 | inSlope: 0 76 | outSlope: 0 77 | tangentMode: 0 78 | weightedMode: 0 79 | inWeight: 0 80 | outWeight: 0 81 | m_PreInfinity: 2 82 | m_PostInfinity: 2 83 | m_RotationOrder: 4 84 | seed: 0 85 | colorGradient: 86 | serializedVersion: 2 87 | key0: {r: 1, g: 1, b: 1, a: 1} 88 | key1: {r: 1, g: 1, b: 1, a: 1} 89 | key2: {r: 0, g: 0, b: 0, a: 0} 90 | key3: {r: 0, g: 0, b: 0, a: 0} 91 | key4: {r: 0, g: 0, b: 0, a: 0} 92 | key5: {r: 0, g: 0, b: 0, a: 0} 93 | key6: {r: 0, g: 0, b: 0, a: 0} 94 | key7: {r: 0, g: 0, b: 0, a: 0} 95 | ctime0: 0 96 | ctime1: 65535 97 | ctime2: 0 98 | ctime3: 0 99 | ctime4: 0 100 | ctime5: 0 101 | ctime6: 0 102 | ctime7: 0 103 | atime0: 0 104 | atime1: 65535 105 | atime2: 0 106 | atime3: 0 107 | atime4: 0 108 | atime5: 0 109 | atime6: 0 110 | atime7: 0 111 | m_Mode: 0 112 | m_NumColorKeys: 2 113 | m_NumAlphaKeys: 2 114 | intensityVariation: 0 115 | positionVariation: {x: 0, y: 0} 116 | scaleVariation: 0 117 | rotationVariation: 0 118 | enableRadialDistortion: 1 119 | targetSizeDistortion: {x: 1, y: 1} 120 | distortionCurve: 121 | serializedVersion: 2 122 | m_Curve: 123 | - serializedVersion: 3 124 | time: 0 125 | value: 0 126 | inSlope: 1 127 | outSlope: 1 128 | tangentMode: 0 129 | weightedMode: 0 130 | inWeight: 0 131 | outWeight: 0 132 | - serializedVersion: 3 133 | time: 1 134 | value: 1 135 | inSlope: 1 136 | outSlope: -1 137 | tangentMode: 0 138 | weightedMode: 0 139 | inWeight: 0 140 | outWeight: 0 141 | m_PreInfinity: 2 142 | m_PostInfinity: 2 143 | m_RotationOrder: 4 144 | distortionRelativeToCenter: 1 145 | fallOff: 1 146 | edgeOffset: 0.448 147 | sideCount: 6 148 | sdfRoundness: 0 149 | inverseSDF: 0 150 | - position: 1.01 151 | positionOffset: {x: 0, y: 0} 152 | angularOffset: 0 153 | translationScale: {x: 1, y: 1} 154 | localIntensity: 0.1 155 | lensFlareTexture: {fileID: 0} 156 | uniformScale: 1.31 157 | sizeXY: {x: 0.5, y: 0.5} 158 | allowMultipleElement: 0 159 | count: 5 160 | preserveAspectRatio: 0 161 | rotation: 0 162 | tint: {r: 0.3820755, g: 1, b: 0.5298769, a: 0.5} 163 | blendMode: 0 164 | autoRotate: 0 165 | flareType: 1 166 | modulateByLightColor: 0 167 | isFoldOpened: 0 168 | distribution: 0 169 | lengthSpread: 1 170 | positionCurve: 171 | serializedVersion: 2 172 | m_Curve: 173 | - serializedVersion: 3 174 | time: 0 175 | value: 0 176 | inSlope: 1 177 | outSlope: 1 178 | tangentMode: 0 179 | weightedMode: 0 180 | inWeight: 0 181 | outWeight: 0 182 | - serializedVersion: 3 183 | time: 1 184 | value: 1 185 | inSlope: 1 186 | outSlope: -1 187 | tangentMode: 0 188 | weightedMode: 0 189 | inWeight: 0 190 | outWeight: 0 191 | m_PreInfinity: 2 192 | m_PostInfinity: 2 193 | m_RotationOrder: 4 194 | scaleCurve: 195 | serializedVersion: 2 196 | m_Curve: 197 | - serializedVersion: 3 198 | time: 0 199 | value: 1 200 | inSlope: 0 201 | outSlope: 0 202 | tangentMode: 0 203 | weightedMode: 0 204 | inWeight: 0 205 | outWeight: 0 206 | - serializedVersion: 3 207 | time: 1 208 | value: 1 209 | inSlope: 0 210 | outSlope: 0 211 | tangentMode: 0 212 | weightedMode: 0 213 | inWeight: 0 214 | outWeight: 0 215 | m_PreInfinity: 2 216 | m_PostInfinity: 2 217 | m_RotationOrder: 4 218 | seed: 0 219 | colorGradient: 220 | serializedVersion: 2 221 | key0: {r: 1, g: 1, b: 1, a: 1} 222 | key1: {r: 1, g: 1, b: 1, a: 1} 223 | key2: {r: 0, g: 0, b: 0, a: 0} 224 | key3: {r: 0, g: 0, b: 0, a: 0} 225 | key4: {r: 0, g: 0, b: 0, a: 0} 226 | key5: {r: 0, g: 0, b: 0, a: 0} 227 | key6: {r: 0, g: 0, b: 0, a: 0} 228 | key7: {r: 0, g: 0, b: 0, a: 0} 229 | ctime0: 0 230 | ctime1: 65535 231 | ctime2: 0 232 | ctime3: 0 233 | ctime4: 0 234 | ctime5: 0 235 | ctime6: 0 236 | ctime7: 0 237 | atime0: 0 238 | atime1: 65535 239 | atime2: 0 240 | atime3: 0 241 | atime4: 0 242 | atime5: 0 243 | atime6: 0 244 | atime7: 0 245 | m_Mode: 0 246 | m_NumColorKeys: 2 247 | m_NumAlphaKeys: 2 248 | intensityVariation: 0 249 | positionVariation: {x: 0, y: 0} 250 | scaleVariation: 0 251 | rotationVariation: 0 252 | enableRadialDistortion: 1 253 | targetSizeDistortion: {x: 1, y: 1} 254 | distortionCurve: 255 | serializedVersion: 2 256 | m_Curve: 257 | - serializedVersion: 3 258 | time: 0 259 | value: 0 260 | inSlope: 1 261 | outSlope: 1 262 | tangentMode: 0 263 | weightedMode: 0 264 | inWeight: 0 265 | outWeight: 0 266 | - serializedVersion: 3 267 | time: 1 268 | value: 1 269 | inSlope: 1 270 | outSlope: -1 271 | tangentMode: 0 272 | weightedMode: 0 273 | inWeight: 0 274 | outWeight: 0 275 | m_PreInfinity: 2 276 | m_PostInfinity: 2 277 | m_RotationOrder: 4 278 | distortionRelativeToCenter: 1 279 | fallOff: 1 280 | edgeOffset: 1 281 | sideCount: 6 282 | sdfRoundness: 0 283 | inverseSDF: 0 284 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Caustic.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a7c0a0ff2b491471085f619e18205ffe 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Caustic2.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 877e1507ae8d81c40bf1b94c1a86036f, type: 3} 13 | m_Name: Caustic2 14 | m_EditorClassIdentifier: 15 | elements: 16 | - visible: 1 17 | position: 1 18 | positionOffset: {x: 0, y: 0} 19 | angularOffset: 0 20 | translationScale: {x: 1, y: 1} 21 | m_LocalIntensity: 0.2 22 | lensFlareTexture: {fileID: 0} 23 | uniformScale: 1 24 | sizeXY: {x: 0.3, y: 0.3} 25 | allowMultipleElement: 1 26 | m_Count: 15 27 | preserveAspectRatio: 0 28 | rotation: 0 29 | tint: {r: 1, g: 1, b: 1, a: 0.5} 30 | blendMode: 0 31 | autoRotate: 0 32 | flareType: 1 33 | modulateByLightColor: 1 34 | isFoldOpened: 1 35 | distribution: 1 36 | lengthSpread: 0.08 37 | positionCurve: 38 | serializedVersion: 2 39 | m_Curve: 40 | - serializedVersion: 3 41 | time: 0 42 | value: 0 43 | inSlope: 0.41564357 44 | outSlope: 0.41564357 45 | tangentMode: 0 46 | weightedMode: 0 47 | inWeight: 0 48 | outWeight: 0.11652543 49 | - serializedVersion: 3 50 | time: 1 51 | value: 1 52 | inSlope: -0.019209484 53 | outSlope: -0.019209484 54 | tangentMode: 0 55 | weightedMode: 0 56 | inWeight: 0.14830506 57 | outWeight: 0 58 | m_PreInfinity: 2 59 | m_PostInfinity: 2 60 | m_RotationOrder: 4 61 | scaleCurve: 62 | serializedVersion: 2 63 | m_Curve: 64 | - serializedVersion: 3 65 | time: 0.014667511 66 | value: 0.10476303 67 | inSlope: 0 68 | outSlope: 0.9832198 69 | tangentMode: 1 70 | weightedMode: 3 71 | inWeight: 0 72 | outWeight: 0.5575382 73 | - serializedVersion: 3 74 | time: 0.49736056 75 | value: 0.99757993 76 | inSlope: 9.401828 77 | outSlope: -13.370937 78 | tangentMode: 1 79 | weightedMode: 3 80 | inWeight: 0.12405088 81 | outWeight: 0.084954195 82 | - serializedVersion: 3 83 | time: 1.0020447 84 | value: 0.08936691 85 | inSlope: -0.829662 86 | outSlope: 0 87 | tangentMode: 1 88 | weightedMode: 3 89 | inWeight: 0.44634336 90 | outWeight: 0 91 | m_PreInfinity: 2 92 | m_PostInfinity: 2 93 | m_RotationOrder: 4 94 | seed: 0 95 | colorGradient: 96 | serializedVersion: 2 97 | key0: {r: 1, g: 0.6367924, b: 0.6367924, a: 1} 98 | key1: {r: 1, g: 0.87863487, b: 0.6179246, a: 1} 99 | key2: {r: 0.99876064, g: 1, b: 0.6839622, a: 0} 100 | key3: {r: 0.6146319, g: 1, b: 0.6084906, a: 0} 101 | key4: {r: 0.54147387, g: 0.565612, b: 0.9811321, a: 0} 102 | key5: {r: 0.8365704, g: 0.5518868, b: 1, a: 0} 103 | key6: {r: 0, g: 0, b: 0, a: 0} 104 | key7: {r: 0, g: 0, b: 0, a: 0} 105 | ctime0: 0 106 | ctime1: 13300 107 | ctime2: 25250 108 | ctime3: 38165 109 | ctime4: 52043 110 | ctime5: 65342 111 | ctime6: 0 112 | ctime7: 0 113 | atime0: 0 114 | atime1: 65535 115 | atime2: 0 116 | atime3: 0 117 | atime4: 0 118 | atime5: 0 119 | atime6: 0 120 | atime7: 0 121 | m_Mode: 0 122 | m_NumColorKeys: 6 123 | m_NumAlphaKeys: 2 124 | m_IntensityVariation: 0 125 | positionVariation: {x: 0, y: 0} 126 | scaleVariation: 0 127 | rotationVariation: 0 128 | enableRadialDistortion: 1 129 | targetSizeDistortion: {x: 1, y: 1} 130 | distortionCurve: 131 | serializedVersion: 2 132 | m_Curve: 133 | - serializedVersion: 3 134 | time: 0 135 | value: 0 136 | inSlope: 1 137 | outSlope: 1 138 | tangentMode: 0 139 | weightedMode: 0 140 | inWeight: 0 141 | outWeight: 0 142 | - serializedVersion: 3 143 | time: 1 144 | value: 1 145 | inSlope: 1 146 | outSlope: -1 147 | tangentMode: 0 148 | weightedMode: 0 149 | inWeight: 0 150 | outWeight: 0 151 | m_PreInfinity: 2 152 | m_PostInfinity: 2 153 | m_RotationOrder: 4 154 | distortionRelativeToCenter: 1 155 | m_FallOff: 1 156 | m_EdgeOffset: 0.99 157 | m_SideCount: 6 158 | m_SdfRoundness: 0 159 | inverseSDF: 0 160 | - visible: 0 161 | position: 1.09 162 | positionOffset: {x: 0, y: 0} 163 | angularOffset: 0 164 | translationScale: {x: 1, y: 1} 165 | m_LocalIntensity: 0.3 166 | lensFlareTexture: {fileID: 0} 167 | uniformScale: 2.45 168 | sizeXY: {x: 0.5, y: 0.5} 169 | allowMultipleElement: 0 170 | m_Count: 5 171 | preserveAspectRatio: 0 172 | rotation: 0 173 | tint: {r: 1, g: 1, b: 1, a: 0.5} 174 | blendMode: 0 175 | autoRotate: 1 176 | flareType: 1 177 | modulateByLightColor: 1 178 | isFoldOpened: 0 179 | distribution: 0 180 | lengthSpread: 1 181 | positionCurve: 182 | serializedVersion: 2 183 | m_Curve: 184 | - serializedVersion: 3 185 | time: 0 186 | value: 0 187 | inSlope: 1 188 | outSlope: 1 189 | tangentMode: 0 190 | weightedMode: 0 191 | inWeight: 0 192 | outWeight: 0 193 | - serializedVersion: 3 194 | time: 1 195 | value: 1 196 | inSlope: 1 197 | outSlope: -1 198 | tangentMode: 0 199 | weightedMode: 0 200 | inWeight: 0 201 | outWeight: 0 202 | m_PreInfinity: 2 203 | m_PostInfinity: 2 204 | m_RotationOrder: 4 205 | scaleCurve: 206 | serializedVersion: 2 207 | m_Curve: 208 | - serializedVersion: 3 209 | time: 0 210 | value: 1 211 | inSlope: 0 212 | outSlope: 0 213 | tangentMode: 0 214 | weightedMode: 0 215 | inWeight: 0 216 | outWeight: 0 217 | - serializedVersion: 3 218 | time: 1 219 | value: 1 220 | inSlope: 0 221 | outSlope: 0 222 | tangentMode: 0 223 | weightedMode: 0 224 | inWeight: 0 225 | outWeight: 0 226 | m_PreInfinity: 2 227 | m_PostInfinity: 2 228 | m_RotationOrder: 4 229 | seed: 0 230 | colorGradient: 231 | serializedVersion: 2 232 | key0: {r: 1, g: 1, b: 1, a: 1} 233 | key1: {r: 1, g: 1, b: 1, a: 1} 234 | key2: {r: 0, g: 0, b: 0, a: 0} 235 | key3: {r: 0, g: 0, b: 0, a: 0} 236 | key4: {r: 0, g: 0, b: 0, a: 0} 237 | key5: {r: 0, g: 0, b: 0, a: 0} 238 | key6: {r: 0, g: 0, b: 0, a: 0} 239 | key7: {r: 0, g: 0, b: 0, a: 0} 240 | ctime0: 0 241 | ctime1: 65535 242 | ctime2: 0 243 | ctime3: 0 244 | ctime4: 0 245 | ctime5: 0 246 | ctime6: 0 247 | ctime7: 0 248 | atime0: 0 249 | atime1: 65535 250 | atime2: 0 251 | atime3: 0 252 | atime4: 0 253 | atime5: 0 254 | atime6: 0 255 | atime7: 0 256 | m_Mode: 0 257 | m_NumColorKeys: 2 258 | m_NumAlphaKeys: 2 259 | m_IntensityVariation: 0 260 | positionVariation: {x: 0, y: 0} 261 | scaleVariation: 0 262 | rotationVariation: 0 263 | enableRadialDistortion: 1 264 | targetSizeDistortion: {x: 1, y: 1.2} 265 | distortionCurve: 266 | serializedVersion: 2 267 | m_Curve: 268 | - serializedVersion: 3 269 | time: 0 270 | value: 0 271 | inSlope: 1 272 | outSlope: 1 273 | tangentMode: 0 274 | weightedMode: 0 275 | inWeight: 0 276 | outWeight: 0 277 | - serializedVersion: 3 278 | time: 1 279 | value: 1 280 | inSlope: 1 281 | outSlope: -1 282 | tangentMode: 0 283 | weightedMode: 0 284 | inWeight: 0 285 | outWeight: 0 286 | m_PreInfinity: 2 287 | m_PostInfinity: 2 288 | m_RotationOrder: 4 289 | distortionRelativeToCenter: 1 290 | m_FallOff: 0.706 291 | m_EdgeOffset: 1 292 | m_SideCount: 6 293 | m_SdfRoundness: 0 294 | inverseSDF: 0 295 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Caustic2.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef83319819a304d5b91a52b660321577 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Sci-Fi.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cc12bb78d703b41fc991a32d4a3638ff 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Shapes.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 142cac7b192c14e33b1fdd3172186568 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Simple.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 460af2ce1cdba4b799061fcd1ac4707b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Smartphone_Smudged.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5beaa492ae7e4714a75995a313ba38a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 0 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Presets/Sun.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69ffd98bf7a2a4bf9a1217c6d30c381d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/Renderer.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} 13 | m_Name: Renderer 14 | m_EditorClassIdentifier: 15 | debugShaders: 16 | debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3} 17 | hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} 18 | probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3} 19 | probeVolumeResources: 20 | probeVolumeDebugShader: {fileID: 4800000, guid: e5c6678ed2aaa91408dd3df699057aae, type: 3} 21 | probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 03cfc4915c15d504a9ed85ecc404e607, type: 3} 22 | probeVolumeOffsetDebugShader: {fileID: 4800000, guid: 53a11f4ebaebf4049b3638ef78dc9664, type: 3} 23 | probeVolumeSamplingDebugShader: {fileID: 4800000, guid: 8f96cd657dc40064aa21efcc7e50a2e7, type: 3} 24 | probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 57d7c4c16e2765b47a4d2069b311bffe, type: 3} 25 | probeSamplingDebugTexture: {fileID: 2800000, guid: 24ec0e140fb444a44ab96ee80844e18e, type: 3} 26 | m_RendererFeatures: [] 27 | m_RendererFeatureMap: 28 | m_UseNativeRenderPass: 0 29 | postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} 30 | shaders: 31 | blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3} 32 | copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} 33 | screenSpaceShadowPS: {fileID: 0} 34 | samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} 35 | stencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3} 36 | fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} 37 | fallbackLoadingPS: {fileID: 4800000, guid: 7f888aff2ac86494babad1c2c5daeee2, type: 3} 38 | materialErrorPS: {fileID: 4800000, guid: 5fd9a8feb75a4b5894c241777f519d4e, type: 3} 39 | coreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3} 40 | coreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b, type: 3} 41 | blitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3} 42 | cameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf, type: 3} 43 | objectMotionVector: {fileID: 4800000, guid: 7b3ede40266cd49a395def176e1bc486, type: 3} 44 | m_AssetVersion: 2 45 | m_OpaqueLayerMask: 46 | serializedVersion: 2 47 | m_Bits: 4294967295 48 | m_TransparentLayerMask: 49 | serializedVersion: 2 50 | m_Bits: 4294967295 51 | m_DefaultStencilState: 52 | overrideStencilState: 0 53 | stencilReference: 0 54 | stencilCompareFunction: 8 55 | passOperation: 2 56 | failOperation: 0 57 | zFailOperation: 0 58 | m_ShadowTransparentReceive: 1 59 | m_RenderingMode: 0 60 | m_DepthPrimingMode: 0 61 | m_CopyDepthMode: 1 62 | m_AccurateGbufferNormals: 0 63 | m_IntermediateTextureMode: 1 64 | -------------------------------------------------------------------------------- /Assets/Common/Renderer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a1e3978263fcb4824a4a292bdc336f20 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Common/URP.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} 13 | m_Name: URP 14 | m_EditorClassIdentifier: 15 | k_AssetVersion: 12 16 | k_AssetPreviousVersion: 12 17 | m_RendererType: 1 18 | m_RendererData: {fileID: 0} 19 | m_RendererDataList: 20 | - {fileID: 11400000, guid: a1e3978263fcb4824a4a292bdc336f20, type: 2} 21 | - {fileID: 11400000, guid: 8d29af53ca3774670a1e61ec8f3ff859, type: 2} 22 | m_DefaultRendererIndex: 0 23 | m_RequireDepthTexture: 0 24 | m_RequireOpaqueTexture: 0 25 | m_OpaqueDownsampling: 1 26 | m_SupportsTerrainHoles: 1 27 | m_SupportsHDR: 1 28 | m_HDRColorBufferPrecision: 0 29 | m_MSAA: 1 30 | m_RenderScale: 1 31 | m_UpscalingFilter: 0 32 | m_FsrOverrideSharpness: 0 33 | m_FsrSharpness: 0.92 34 | m_EnableLODCrossFade: 0 35 | m_LODCrossFadeDitheringType: 1 36 | m_ShEvalMode: 0 37 | m_LightProbeSystem: 0 38 | m_ProbeVolumeMemoryBudget: 1024 39 | m_ProbeVolumeBlendingMemoryBudget: 128 40 | m_SupportProbeVolumeGPUStreaming: 0 41 | m_SupportProbeVolumeDiskStreaming: 0 42 | m_SupportProbeVolumeScenarios: 0 43 | m_SupportProbeVolumeScenarioBlending: 0 44 | m_ProbeVolumeSHBands: 1 45 | m_MainLightRenderingMode: 1 46 | m_MainLightShadowsSupported: 1 47 | m_MainLightShadowmapResolution: 2048 48 | m_AdditionalLightsRenderingMode: 1 49 | m_AdditionalLightsPerObjectLimit: 4 50 | m_AdditionalLightShadowsSupported: 1 51 | m_AdditionalLightsShadowmapResolution: 2048 52 | m_AdditionalLightsShadowResolutionTierLow: 256 53 | m_AdditionalLightsShadowResolutionTierMedium: 512 54 | m_AdditionalLightsShadowResolutionTierHigh: 1024 55 | m_ReflectionProbeBlending: 0 56 | m_ReflectionProbeBoxProjection: 0 57 | m_ShadowDistance: 10 58 | m_ShadowCascadeCount: 1 59 | m_Cascade2Split: 0.25 60 | m_Cascade3Split: {x: 0.1, y: 0.3} 61 | m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} 62 | m_CascadeBorder: 0.1 63 | m_ShadowDepthBias: 1 64 | m_ShadowNormalBias: 1 65 | m_AnyShadowsSupported: 1 66 | m_SoftShadowsSupported: 1 67 | m_ConservativeEnclosingSphere: 1 68 | m_NumIterationsEnclosingSphere: 64 69 | m_SoftShadowQuality: 2 70 | m_AdditionalLightsCookieResolution: 2048 71 | m_AdditionalLightsCookieFormat: 3 72 | m_UseSRPBatcher: 1 73 | m_SupportsDynamicBatching: 0 74 | m_MixedLightingSupported: 0 75 | m_SupportsLightCookies: 0 76 | m_SupportsLightLayers: 0 77 | m_DebugLevel: 0 78 | m_StoreActionsOptimization: 0 79 | m_UseAdaptivePerformance: 1 80 | m_ColorGradingMode: 0 81 | m_ColorGradingLutSize: 32 82 | m_AllowPostProcessAlphaOutput: 0 83 | m_UseFastSRGBLinearConversion: 0 84 | m_SupportDataDrivenLensFlare: 1 85 | m_SupportScreenSpaceLensFlare: 1 86 | m_GPUResidentDrawerMode: 0 87 | m_SmallMeshScreenPercentage: 0 88 | m_GPUResidentDrawerEnableOcclusionCullingInCameras: 0 89 | m_ShadowType: 1 90 | m_LocalShadowsSupported: 0 91 | m_LocalShadowsAtlasResolution: 256 92 | m_MaxPixelLights: 0 93 | m_ShadowAtlasResolution: 256 94 | m_VolumeFrameworkUpdateMode: 0 95 | m_VolumeProfile: {fileID: 0} 96 | apvScenesData: 97 | obsoleteSceneBounds: 98 | m_Keys: [] 99 | m_Values: [] 100 | obsoleteHasProbeVolumes: 101 | m_Keys: [] 102 | m_Values: 103 | m_PrefilteringModeMainLightShadows: 1 104 | m_PrefilteringModeAdditionalLight: 4 105 | m_PrefilteringModeAdditionalLightShadows: 1 106 | m_PrefilterXRKeywords: 0 107 | m_PrefilteringModeForwardPlus: 1 108 | m_PrefilteringModeDeferredRendering: 1 109 | m_PrefilteringModeScreenSpaceOcclusion: 1 110 | m_PrefilterDebugKeywords: 0 111 | m_PrefilterWriteRenderingLayers: 0 112 | m_PrefilterHDROutput: 0 113 | m_PrefilterAlphaOutput: 0 114 | m_PrefilterSSAODepthNormals: 0 115 | m_PrefilterSSAOSourceDepthLow: 0 116 | m_PrefilterSSAOSourceDepthMedium: 0 117 | m_PrefilterSSAOSourceDepthHigh: 0 118 | m_PrefilterSSAOInterleaved: 0 119 | m_PrefilterSSAOBlueNoise: 0 120 | m_PrefilterSSAOSampleCountLow: 0 121 | m_PrefilterSSAOSampleCountMedium: 0 122 | m_PrefilterSSAOSampleCountHigh: 0 123 | m_PrefilterDBufferMRT1: 0 124 | m_PrefilterDBufferMRT2: 0 125 | m_PrefilterDBufferMRT3: 0 126 | m_PrefilterSoftShadowsQualityLow: 0 127 | m_PrefilterSoftShadowsQualityMedium: 0 128 | m_PrefilterSoftShadowsQualityHigh: 0 129 | m_PrefilterSoftShadows: 0 130 | m_PrefilterScreenCoord: 0 131 | m_PrefilterNativeRenderPass: 0 132 | m_PrefilterUseLegacyLightmaps: 0 133 | m_ShaderVariantLogLevel: 0 134 | m_ShadowCascades: 0 135 | m_Textures: 136 | blueNoise64LTex: {fileID: 2800000, guid: e3d24661c1e055f45a7560c033dbb837, type: 3} 137 | bayerMatrixTex: {fileID: 2800000, guid: f9ee4ed84c1d10c49aabb9b210b0fc44, type: 3} 138 | -------------------------------------------------------------------------------- /Assets/Common/URP.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 830af338d102e4e93a2e03be3a97086d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/FlashLight.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a44a0b982057f4cd8a6c0f07148d2b56 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/FlashLight/Flare.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 13 | m_Name: Flare 14 | m_EditorClassIdentifier: 15 | components: 16 | - {fileID: 7920604603748417209} 17 | - {fileID: 3136729780461382272} 18 | --- !u!114 &3136729780461382272 19 | MonoBehaviour: 20 | m_ObjectHideFlags: 3 21 | m_CorrespondingSourceObject: {fileID: 0} 22 | m_PrefabInstance: {fileID: 0} 23 | m_PrefabAsset: {fileID: 0} 24 | m_GameObject: {fileID: 0} 25 | m_Enabled: 1 26 | m_EditorHideFlags: 0 27 | m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} 28 | m_Name: Bloom 29 | m_EditorClassIdentifier: 30 | active: 1 31 | skipIterations: 32 | m_OverrideState: 0 33 | m_Value: 1 34 | threshold: 35 | m_OverrideState: 1 36 | m_Value: 0 37 | intensity: 38 | m_OverrideState: 1 39 | m_Value: 1 40 | scatter: 41 | m_OverrideState: 0 42 | m_Value: 0.7 43 | clamp: 44 | m_OverrideState: 0 45 | m_Value: 65472 46 | tint: 47 | m_OverrideState: 0 48 | m_Value: {r: 1, g: 1, b: 1, a: 1} 49 | highQualityFiltering: 50 | m_OverrideState: 1 51 | m_Value: 1 52 | downscale: 53 | m_OverrideState: 0 54 | m_Value: 0 55 | maxIterations: 56 | m_OverrideState: 0 57 | m_Value: 6 58 | dirtTexture: 59 | m_OverrideState: 0 60 | m_Value: {fileID: 0} 61 | dimension: 1 62 | dirtIntensity: 63 | m_OverrideState: 0 64 | m_Value: 0 65 | --- !u!114 &7920604603748417209 66 | MonoBehaviour: 67 | m_ObjectHideFlags: 3 68 | m_CorrespondingSourceObject: {fileID: 0} 69 | m_PrefabInstance: {fileID: 0} 70 | m_PrefabAsset: {fileID: 0} 71 | m_GameObject: {fileID: 0} 72 | m_Enabled: 1 73 | m_EditorHideFlags: 0 74 | m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3} 75 | m_Name: ScreenSpaceLensFlare 76 | m_EditorClassIdentifier: 77 | active: 1 78 | intensity: 79 | m_OverrideState: 1 80 | m_Value: 1 81 | tintColor: 82 | m_OverrideState: 0 83 | m_Value: {r: 1, g: 1, b: 1, a: 1} 84 | bloomMip: 85 | m_OverrideState: 0 86 | m_Value: 1 87 | firstFlareIntensity: 88 | m_OverrideState: 0 89 | m_Value: 1 90 | secondaryFlareIntensity: 91 | m_OverrideState: 0 92 | m_Value: 1 93 | warpedFlareIntensity: 94 | m_OverrideState: 0 95 | m_Value: 1 96 | warpedFlareScale: 97 | m_OverrideState: 0 98 | m_Value: {x: 1, y: 1} 99 | samples: 100 | m_OverrideState: 1 101 | m_Value: 3 102 | sampleDimmer: 103 | m_OverrideState: 0 104 | m_Value: 0.5 105 | vignetteEffect: 106 | m_OverrideState: 0 107 | m_Value: 1 108 | startingPosition: 109 | m_OverrideState: 0 110 | m_Value: 1.2 111 | scale: 112 | m_OverrideState: 0 113 | m_Value: 1.5 114 | streaksIntensity: 115 | m_OverrideState: 1 116 | m_Value: 0.2 117 | streaksLength: 118 | m_OverrideState: 1 119 | m_Value: 0.6 120 | streaksOrientation: 121 | m_OverrideState: 0 122 | m_Value: 0 123 | streaksThreshold: 124 | m_OverrideState: 0 125 | m_Value: 0.25 126 | resolution: 127 | m_OverrideState: 1 128 | m_Value: 2 129 | chromaticAbberationIntensity: 130 | m_OverrideState: 1 131 | m_Value: 0.6 132 | -------------------------------------------------------------------------------- /Assets/FlashLight/Flare.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 493ebe2bbfdfc4f37b6d8e1ddd59b22e 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/FlashLight/FlashLight.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98a6b6645bae4448999932ee7fd1567c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/FlashLight/Floor.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 8 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Floor 11 | m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} 12 | m_Parent: {fileID: 0} 13 | m_ModifiedSerializedProperties: 0 14 | m_ValidKeywords: [] 15 | m_InvalidKeywords: [] 16 | m_LightmapFlags: 4 17 | m_EnableInstancingVariants: 0 18 | m_DoubleSidedGI: 0 19 | m_CustomRenderQueue: -1 20 | stringTagMap: 21 | RenderType: Opaque 22 | disabledShaderPasses: 23 | - MOTIONVECTORS 24 | m_LockedProperties: 25 | m_SavedProperties: 26 | serializedVersion: 3 27 | m_TexEnvs: 28 | - _BaseMap: 29 | m_Texture: {fileID: 7506314328700112305, guid: 24720d25ad47749beb4b8e15a7c8bac6, type: 3} 30 | m_Scale: {x: 20, y: 20} 31 | m_Offset: {x: 0, y: 0} 32 | - _BumpMap: 33 | m_Texture: {fileID: 0} 34 | m_Scale: {x: 1, y: 1} 35 | m_Offset: {x: 0, y: 0} 36 | - _DetailAlbedoMap: 37 | m_Texture: {fileID: 0} 38 | m_Scale: {x: 1, y: 1} 39 | m_Offset: {x: 0, y: 0} 40 | - _DetailMask: 41 | m_Texture: {fileID: 0} 42 | m_Scale: {x: 1, y: 1} 43 | m_Offset: {x: 0, y: 0} 44 | - _DetailNormalMap: 45 | m_Texture: {fileID: 0} 46 | m_Scale: {x: 1, y: 1} 47 | m_Offset: {x: 0, y: 0} 48 | - _EmissionMap: 49 | m_Texture: {fileID: 0} 50 | m_Scale: {x: 1, y: 1} 51 | m_Offset: {x: 0, y: 0} 52 | - _MainTex: 53 | m_Texture: {fileID: 7506314328700112305, guid: 24720d25ad47749beb4b8e15a7c8bac6, type: 3} 54 | m_Scale: {x: 20, y: 20} 55 | m_Offset: {x: 0, y: 0} 56 | - _MetallicGlossMap: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | - _OcclusionMap: 61 | m_Texture: {fileID: 0} 62 | m_Scale: {x: 1, y: 1} 63 | m_Offset: {x: 0, y: 0} 64 | - _ParallaxMap: 65 | m_Texture: {fileID: 0} 66 | m_Scale: {x: 1, y: 1} 67 | m_Offset: {x: 0, y: 0} 68 | - _SpecGlossMap: 69 | m_Texture: {fileID: 0} 70 | m_Scale: {x: 1, y: 1} 71 | m_Offset: {x: 0, y: 0} 72 | - unity_Lightmaps: 73 | m_Texture: {fileID: 0} 74 | m_Scale: {x: 1, y: 1} 75 | m_Offset: {x: 0, y: 0} 76 | - unity_LightmapsInd: 77 | m_Texture: {fileID: 0} 78 | m_Scale: {x: 1, y: 1} 79 | m_Offset: {x: 0, y: 0} 80 | - unity_ShadowMasks: 81 | m_Texture: {fileID: 0} 82 | m_Scale: {x: 1, y: 1} 83 | m_Offset: {x: 0, y: 0} 84 | m_Ints: [] 85 | m_Floats: 86 | - _AlphaClip: 0 87 | - _AlphaToMask: 0 88 | - _Blend: 0 89 | - _BlendModePreserveSpecular: 1 90 | - _BumpScale: 1 91 | - _ClearCoatMask: 0 92 | - _ClearCoatSmoothness: 0 93 | - _Cull: 2 94 | - _Cutoff: 0.5 95 | - _DetailAlbedoMapScale: 1 96 | - _DetailNormalMapScale: 1 97 | - _DstBlend: 0 98 | - _DstBlendAlpha: 0 99 | - _EnvironmentReflections: 1 100 | - _GlossMapScale: 0 101 | - _Glossiness: 0 102 | - _GlossyReflections: 0 103 | - _Metallic: 0.8 104 | - _OcclusionStrength: 1 105 | - _Parallax: 0.005 106 | - _QueueOffset: 0 107 | - _ReceiveShadows: 1 108 | - _Smoothness: 0.9 109 | - _SmoothnessTextureChannel: 0 110 | - _SpecularHighlights: 1 111 | - _SrcBlend: 1 112 | - _SrcBlendAlpha: 1 113 | - _Surface: 0 114 | - _WorkflowMode: 1 115 | - _ZWrite: 1 116 | m_Colors: 117 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 118 | - _Color: {r: 1, g: 1, b: 1, a: 1} 119 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 120 | - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} 121 | m_BuildTextureStacks: [] 122 | m_AllowLocking: 1 123 | --- !u!114 &5642884902193158398 124 | MonoBehaviour: 125 | m_ObjectHideFlags: 11 126 | m_CorrespondingSourceObject: {fileID: 0} 127 | m_PrefabInstance: {fileID: 0} 128 | m_PrefabAsset: {fileID: 0} 129 | m_GameObject: {fileID: 0} 130 | m_Enabled: 1 131 | m_EditorHideFlags: 0 132 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 133 | m_Name: 134 | m_EditorClassIdentifier: 135 | version: 9 136 | -------------------------------------------------------------------------------- /Assets/FlashLight/Floor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 448e0d12410af4156aaba93cf1591087 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/FlashLight/Light.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-960091963469897242 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 9 16 | --- !u!21 &2100000 17 | Material: 18 | serializedVersion: 8 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_Name: Light 24 | m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} 25 | m_Parent: {fileID: 0} 26 | m_ModifiedSerializedProperties: 0 27 | m_ValidKeywords: 28 | - _EMISSION 29 | m_InvalidKeywords: [] 30 | m_LightmapFlags: 2 31 | m_EnableInstancingVariants: 0 32 | m_DoubleSidedGI: 0 33 | m_CustomRenderQueue: -1 34 | stringTagMap: 35 | RenderType: Opaque 36 | disabledShaderPasses: 37 | - MOTIONVECTORS 38 | m_LockedProperties: 39 | m_SavedProperties: 40 | serializedVersion: 3 41 | m_TexEnvs: 42 | - _BaseMap: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | - _BumpMap: 47 | m_Texture: {fileID: 0} 48 | m_Scale: {x: 1, y: 1} 49 | m_Offset: {x: 0, y: 0} 50 | - _DetailAlbedoMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _DetailMask: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | - _DetailNormalMap: 59 | m_Texture: {fileID: 0} 60 | m_Scale: {x: 1, y: 1} 61 | m_Offset: {x: 0, y: 0} 62 | - _EmissionMap: 63 | m_Texture: {fileID: 0} 64 | m_Scale: {x: 1, y: 1} 65 | m_Offset: {x: 0, y: 0} 66 | - _MainTex: 67 | m_Texture: {fileID: 0} 68 | m_Scale: {x: 1, y: 1} 69 | m_Offset: {x: 0, y: 0} 70 | - _MetallicGlossMap: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | - _OcclusionMap: 75 | m_Texture: {fileID: 0} 76 | m_Scale: {x: 1, y: 1} 77 | m_Offset: {x: 0, y: 0} 78 | - _ParallaxMap: 79 | m_Texture: {fileID: 0} 80 | m_Scale: {x: 1, y: 1} 81 | m_Offset: {x: 0, y: 0} 82 | - _SpecGlossMap: 83 | m_Texture: {fileID: 0} 84 | m_Scale: {x: 1, y: 1} 85 | m_Offset: {x: 0, y: 0} 86 | - unity_Lightmaps: 87 | m_Texture: {fileID: 0} 88 | m_Scale: {x: 1, y: 1} 89 | m_Offset: {x: 0, y: 0} 90 | - unity_LightmapsInd: 91 | m_Texture: {fileID: 0} 92 | m_Scale: {x: 1, y: 1} 93 | m_Offset: {x: 0, y: 0} 94 | - unity_ShadowMasks: 95 | m_Texture: {fileID: 0} 96 | m_Scale: {x: 1, y: 1} 97 | m_Offset: {x: 0, y: 0} 98 | m_Ints: [] 99 | m_Floats: 100 | - _AlphaClip: 0 101 | - _AlphaToMask: 0 102 | - _Blend: 0 103 | - _BlendModePreserveSpecular: 1 104 | - _BumpScale: 1 105 | - _ClearCoatMask: 0 106 | - _ClearCoatSmoothness: 0 107 | - _Cull: 2 108 | - _Cutoff: 0.5 109 | - _DetailAlbedoMapScale: 1 110 | - _DetailNormalMapScale: 1 111 | - _DstBlend: 0 112 | - _DstBlendAlpha: 0 113 | - _EnvironmentReflections: 1 114 | - _GlossMapScale: 0 115 | - _Glossiness: 0 116 | - _GlossyReflections: 0 117 | - _Metallic: 0 118 | - _OcclusionStrength: 1 119 | - _Parallax: 0.005 120 | - _QueueOffset: 0 121 | - _ReceiveShadows: 1 122 | - _Smoothness: 0 123 | - _SmoothnessTextureChannel: 0 124 | - _SpecularHighlights: 1 125 | - _SrcBlend: 1 126 | - _SrcBlendAlpha: 1 127 | - _Surface: 0 128 | - _WorkflowMode: 1 129 | - _ZWrite: 1 130 | m_Colors: 131 | - _BaseColor: {r: 0, g: 0, b: 0, a: 1} 132 | - _Color: {r: 0, g: 0, b: 0, a: 1} 133 | - _EmissionColor: {r: 23.96863, g: 23.96863, b: 23.96863, a: 1} 134 | - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} 135 | m_BuildTextureStacks: [] 136 | m_AllowLocking: 1 137 | -------------------------------------------------------------------------------- /Assets/FlashLight/Light.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 799ba9f1947a8439786fc73b5112e6dc 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/FlashLight/Postprocess.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-7500160819344550782 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 3 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} 13 | m_Name: Vignette 14 | m_EditorClassIdentifier: 15 | active: 1 16 | color: 17 | m_OverrideState: 0 18 | m_Value: {r: 0, g: 0, b: 0, a: 1} 19 | center: 20 | m_OverrideState: 0 21 | m_Value: {x: 0.5, y: 0.5} 22 | intensity: 23 | m_OverrideState: 1 24 | m_Value: 0.24 25 | smoothness: 26 | m_OverrideState: 1 27 | m_Value: 0.3 28 | rounded: 29 | m_OverrideState: 0 30 | m_Value: 0 31 | --- !u!114 &-4733891654715619188 32 | MonoBehaviour: 33 | m_ObjectHideFlags: 3 34 | m_CorrespondingSourceObject: {fileID: 0} 35 | m_PrefabInstance: {fileID: 0} 36 | m_PrefabAsset: {fileID: 0} 37 | m_GameObject: {fileID: 0} 38 | m_Enabled: 1 39 | m_EditorHideFlags: 0 40 | m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} 41 | m_Name: Tonemapping 42 | m_EditorClassIdentifier: 43 | active: 1 44 | mode: 45 | m_OverrideState: 1 46 | m_Value: 1 47 | neutralHDRRangeReductionMode: 48 | m_OverrideState: 0 49 | m_Value: 2 50 | acesPreset: 51 | m_OverrideState: 0 52 | m_Value: 3 53 | hueShiftAmount: 54 | m_OverrideState: 0 55 | m_Value: 0 56 | detectPaperWhite: 57 | m_OverrideState: 0 58 | m_Value: 0 59 | paperWhite: 60 | m_OverrideState: 0 61 | m_Value: 300 62 | detectBrightnessLimits: 63 | m_OverrideState: 0 64 | m_Value: 1 65 | minNits: 66 | m_OverrideState: 0 67 | m_Value: 0.005 68 | maxNits: 69 | m_OverrideState: 0 70 | m_Value: 1000 71 | --- !u!114 &-780604400664481272 72 | MonoBehaviour: 73 | m_ObjectHideFlags: 3 74 | m_CorrespondingSourceObject: {fileID: 0} 75 | m_PrefabInstance: {fileID: 0} 76 | m_PrefabAsset: {fileID: 0} 77 | m_GameObject: {fileID: 0} 78 | m_Enabled: 1 79 | m_EditorHideFlags: 0 80 | m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3} 81 | m_Name: FilmGrain 82 | m_EditorClassIdentifier: 83 | active: 1 84 | type: 85 | m_OverrideState: 0 86 | m_Value: 0 87 | intensity: 88 | m_OverrideState: 1 89 | m_Value: 0.5 90 | response: 91 | m_OverrideState: 0 92 | m_Value: 0.8 93 | texture: 94 | m_OverrideState: 0 95 | m_Value: {fileID: 0} 96 | --- !u!114 &11400000 97 | MonoBehaviour: 98 | m_ObjectHideFlags: 0 99 | m_CorrespondingSourceObject: {fileID: 0} 100 | m_PrefabInstance: {fileID: 0} 101 | m_PrefabAsset: {fileID: 0} 102 | m_GameObject: {fileID: 0} 103 | m_Enabled: 1 104 | m_EditorHideFlags: 0 105 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 106 | m_Name: Postprocess 107 | m_EditorClassIdentifier: 108 | components: 109 | - {fileID: -4733891654715619188} 110 | - {fileID: -7500160819344550782} 111 | - {fileID: -780604400664481272} 112 | -------------------------------------------------------------------------------- /Assets/FlashLight/Postprocess.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5e58d0f3b9490414e8159eb5102d00ae 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Helmet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89bbec1ea465b4ebb8d8559a10ae499a 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Helmet/DamagedHelmet.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7a2ef534f397c44a08937374330d2b65 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Helmet/DamagedHelmet/DamagedHelmet.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/ScreenSpaceLensFlareTest/8a7213126302702ff553e70aac6a735a3baeec07/Assets/Helmet/DamagedHelmet/DamagedHelmet.glb -------------------------------------------------------------------------------- /Assets/Helmet/DamagedHelmet/DamagedHelmet.glb.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 85b05a350780344c095cb33a0b353b90 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 715df9372183c47e389bb6e19fbc3b52, type: 3} 11 | editorImportSettings: 12 | generateSecondaryUVSet: 0 13 | importSettings: 14 | nodeNameMethod: 1 15 | animationMethod: 0 16 | generateMipMaps: 1 17 | texturesReadable: 0 18 | defaultMinFilterMode: 9729 19 | defaultMagFilterMode: 9729 20 | anisotropicFilterLevel: 1 21 | instantiationSettings: 22 | mask: 2 23 | layer: 0 24 | skinUpdateWhenOffscreen: 1 25 | lightIntensityFactor: 0 26 | sceneObjectCreation: 2 27 | assetDependencies: [] 28 | reportItems: [] 29 | -------------------------------------------------------------------------------- /Assets/Helmet/DamagedHelmet/README.txt: -------------------------------------------------------------------------------- 1 | Battle Damaged Sci-fi Helmet - PBR by [theblueturtle_](https://sketchfab.com/theblueturtle_), published under a Creative Commons Attribution-NonCommercial license 2 | 3 | https://sketchfab.com/models/b81008d513954189a063ff901f7abfe4 4 | 5 | This .glb file was copied from the glTF-Sample-Models repository. 6 | 7 | https://github.com/KhronosGroup/glTF-Sample-Models 8 | -------------------------------------------------------------------------------- /Assets/Helmet/DamagedHelmet/README.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cab216576032f4546b6f2999f78c5cdc 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Helmet/Flare.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 13 | m_Name: Flare 14 | m_EditorClassIdentifier: 15 | components: 16 | - {fileID: 7920604603748417209} 17 | - {fileID: 3136729780461382272} 18 | --- !u!114 &3136729780461382272 19 | MonoBehaviour: 20 | m_ObjectHideFlags: 3 21 | m_CorrespondingSourceObject: {fileID: 0} 22 | m_PrefabInstance: {fileID: 0} 23 | m_PrefabAsset: {fileID: 0} 24 | m_GameObject: {fileID: 0} 25 | m_Enabled: 1 26 | m_EditorHideFlags: 0 27 | m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} 28 | m_Name: Bloom 29 | m_EditorClassIdentifier: 30 | active: 1 31 | skipIterations: 32 | m_OverrideState: 0 33 | m_Value: 1 34 | threshold: 35 | m_OverrideState: 1 36 | m_Value: 0.5 37 | intensity: 38 | m_OverrideState: 1 39 | m_Value: 2 40 | scatter: 41 | m_OverrideState: 1 42 | m_Value: 0.9 43 | clamp: 44 | m_OverrideState: 0 45 | m_Value: 65472 46 | tint: 47 | m_OverrideState: 0 48 | m_Value: {r: 1, g: 1, b: 1, a: 1} 49 | highQualityFiltering: 50 | m_OverrideState: 1 51 | m_Value: 1 52 | downscale: 53 | m_OverrideState: 0 54 | m_Value: 0 55 | maxIterations: 56 | m_OverrideState: 1 57 | m_Value: 8 58 | dirtTexture: 59 | m_OverrideState: 0 60 | m_Value: {fileID: 0} 61 | dimension: 1 62 | dirtIntensity: 63 | m_OverrideState: 0 64 | m_Value: 0 65 | --- !u!114 &7920604603748417209 66 | MonoBehaviour: 67 | m_ObjectHideFlags: 3 68 | m_CorrespondingSourceObject: {fileID: 0} 69 | m_PrefabInstance: {fileID: 0} 70 | m_PrefabAsset: {fileID: 0} 71 | m_GameObject: {fileID: 0} 72 | m_Enabled: 1 73 | m_EditorHideFlags: 0 74 | m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3} 75 | m_Name: ScreenSpaceLensFlare 76 | m_EditorClassIdentifier: 77 | active: 1 78 | intensity: 79 | m_OverrideState: 1 80 | m_Value: 1 81 | tintColor: 82 | m_OverrideState: 0 83 | m_Value: {r: 1, g: 1, b: 1, a: 1} 84 | bloomMip: 85 | m_OverrideState: 0 86 | m_Value: 1 87 | firstFlareIntensity: 88 | m_OverrideState: 0 89 | m_Value: 1 90 | secondaryFlareIntensity: 91 | m_OverrideState: 0 92 | m_Value: 1 93 | warpedFlareIntensity: 94 | m_OverrideState: 0 95 | m_Value: 1 96 | warpedFlareScale: 97 | m_OverrideState: 0 98 | m_Value: {x: 1, y: 1} 99 | samples: 100 | m_OverrideState: 1 101 | m_Value: 3 102 | sampleDimmer: 103 | m_OverrideState: 0 104 | m_Value: 0.5 105 | vignetteEffect: 106 | m_OverrideState: 0 107 | m_Value: 1 108 | startingPosition: 109 | m_OverrideState: 0 110 | m_Value: 1.2 111 | scale: 112 | m_OverrideState: 0 113 | m_Value: 1.5 114 | streaksIntensity: 115 | m_OverrideState: 1 116 | m_Value: 0.2 117 | streaksLength: 118 | m_OverrideState: 1 119 | m_Value: 1 120 | streaksOrientation: 121 | m_OverrideState: 0 122 | m_Value: 0 123 | streaksThreshold: 124 | m_OverrideState: 0 125 | m_Value: 0.25 126 | resolution: 127 | m_OverrideState: 1 128 | m_Value: 2 129 | chromaticAbberationIntensity: 130 | m_OverrideState: 0 131 | m_Value: 0.6 132 | -------------------------------------------------------------------------------- /Assets/Helmet/Flare.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3d031d0b7a0404a8d0dd6ad9c87b83 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Helmet/Floor.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 8 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Floor 11 | m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} 12 | m_Parent: {fileID: 0} 13 | m_ModifiedSerializedProperties: 0 14 | m_ValidKeywords: [] 15 | m_InvalidKeywords: [] 16 | m_LightmapFlags: 4 17 | m_EnableInstancingVariants: 0 18 | m_DoubleSidedGI: 0 19 | m_CustomRenderQueue: -1 20 | stringTagMap: 21 | RenderType: Opaque 22 | disabledShaderPasses: 23 | - MOTIONVECTORS 24 | m_LockedProperties: 25 | m_SavedProperties: 26 | serializedVersion: 3 27 | m_TexEnvs: 28 | - _BaseMap: 29 | m_Texture: {fileID: 7506314328700112305, guid: 24720d25ad47749beb4b8e15a7c8bac6, type: 3} 30 | m_Scale: {x: 20, y: 20} 31 | m_Offset: {x: 0, y: 0} 32 | - _BumpMap: 33 | m_Texture: {fileID: 0} 34 | m_Scale: {x: 1, y: 1} 35 | m_Offset: {x: 0, y: 0} 36 | - _DetailAlbedoMap: 37 | m_Texture: {fileID: 0} 38 | m_Scale: {x: 1, y: 1} 39 | m_Offset: {x: 0, y: 0} 40 | - _DetailMask: 41 | m_Texture: {fileID: 0} 42 | m_Scale: {x: 1, y: 1} 43 | m_Offset: {x: 0, y: 0} 44 | - _DetailNormalMap: 45 | m_Texture: {fileID: 0} 46 | m_Scale: {x: 1, y: 1} 47 | m_Offset: {x: 0, y: 0} 48 | - _EmissionMap: 49 | m_Texture: {fileID: 0} 50 | m_Scale: {x: 1, y: 1} 51 | m_Offset: {x: 0, y: 0} 52 | - _MainTex: 53 | m_Texture: {fileID: 7506314328700112305, guid: 24720d25ad47749beb4b8e15a7c8bac6, type: 3} 54 | m_Scale: {x: 20, y: 20} 55 | m_Offset: {x: 0, y: 0} 56 | - _MetallicGlossMap: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | - _OcclusionMap: 61 | m_Texture: {fileID: 0} 62 | m_Scale: {x: 1, y: 1} 63 | m_Offset: {x: 0, y: 0} 64 | - _ParallaxMap: 65 | m_Texture: {fileID: 0} 66 | m_Scale: {x: 1, y: 1} 67 | m_Offset: {x: 0, y: 0} 68 | - _SpecGlossMap: 69 | m_Texture: {fileID: 0} 70 | m_Scale: {x: 1, y: 1} 71 | m_Offset: {x: 0, y: 0} 72 | - unity_Lightmaps: 73 | m_Texture: {fileID: 0} 74 | m_Scale: {x: 1, y: 1} 75 | m_Offset: {x: 0, y: 0} 76 | - unity_LightmapsInd: 77 | m_Texture: {fileID: 0} 78 | m_Scale: {x: 1, y: 1} 79 | m_Offset: {x: 0, y: 0} 80 | - unity_ShadowMasks: 81 | m_Texture: {fileID: 0} 82 | m_Scale: {x: 1, y: 1} 83 | m_Offset: {x: 0, y: 0} 84 | m_Ints: [] 85 | m_Floats: 86 | - _AlphaClip: 0 87 | - _AlphaToMask: 0 88 | - _Blend: 0 89 | - _BlendModePreserveSpecular: 1 90 | - _BumpScale: 1 91 | - _ClearCoatMask: 0 92 | - _ClearCoatSmoothness: 0 93 | - _Cull: 2 94 | - _Cutoff: 0.5 95 | - _DetailAlbedoMapScale: 1 96 | - _DetailNormalMapScale: 1 97 | - _DstBlend: 0 98 | - _DstBlendAlpha: 0 99 | - _EnvironmentReflections: 1 100 | - _GlossMapScale: 0 101 | - _Glossiness: 0 102 | - _GlossyReflections: 0 103 | - _Metallic: 0.8 104 | - _OcclusionStrength: 1 105 | - _Parallax: 0.005 106 | - _QueueOffset: 0 107 | - _ReceiveShadows: 1 108 | - _Smoothness: 0.9 109 | - _SmoothnessTextureChannel: 0 110 | - _SpecularHighlights: 1 111 | - _SrcBlend: 1 112 | - _SrcBlendAlpha: 1 113 | - _Surface: 0 114 | - _WorkflowMode: 1 115 | - _ZWrite: 1 116 | m_Colors: 117 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 118 | - _Color: {r: 1, g: 1, b: 1, a: 1} 119 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 120 | - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} 121 | m_BuildTextureStacks: [] 122 | m_AllowLocking: 1 123 | --- !u!114 &5642884902193158398 124 | MonoBehaviour: 125 | m_ObjectHideFlags: 11 126 | m_CorrespondingSourceObject: {fileID: 0} 127 | m_PrefabInstance: {fileID: 0} 128 | m_PrefabAsset: {fileID: 0} 129 | m_GameObject: {fileID: 0} 130 | m_Enabled: 1 131 | m_EditorHideFlags: 0 132 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 133 | m_Name: 134 | m_EditorClassIdentifier: 135 | version: 9 136 | -------------------------------------------------------------------------------- /Assets/Helmet/Floor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 606c3ccf1cbca48e4b19a05aacedb8bd 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Helmet/Helmet.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f199575ad3fd74f67a452de35550a306 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /Assets/Helmet/Helmet.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1b7ecbdedd56e402483cc3f2a99c1c4c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Helmet/Material_MR.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-4490019311811468172 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 639247ca83abc874e893eb93af2b5e44, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 0 16 | --- !u!114 &-498090969051403471 17 | MonoBehaviour: 18 | m_ObjectHideFlags: 11 19 | m_CorrespondingSourceObject: {fileID: 0} 20 | m_PrefabInstance: {fileID: 0} 21 | m_PrefabAsset: {fileID: 0} 22 | m_GameObject: {fileID: 0} 23 | m_Enabled: 1 24 | m_EditorHideFlags: 0 25 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 26 | m_Name: 27 | m_EditorClassIdentifier: 28 | version: 9 29 | --- !u!21 &2100000 30 | Material: 31 | serializedVersion: 8 32 | m_ObjectHideFlags: 0 33 | m_CorrespondingSourceObject: {fileID: 0} 34 | m_PrefabInstance: {fileID: 0} 35 | m_PrefabAsset: {fileID: 0} 36 | m_Name: Material_MR 37 | m_Shader: {fileID: -6465566751694194690, guid: f199575ad3fd74f67a452de35550a306, type: 3} 38 | m_Parent: {fileID: 0} 39 | m_ModifiedSerializedProperties: 0 40 | m_ValidKeywords: [] 41 | m_InvalidKeywords: [] 42 | m_LightmapFlags: 2 43 | m_EnableInstancingVariants: 0 44 | m_DoubleSidedGI: 1 45 | m_CustomRenderQueue: -1 46 | stringTagMap: 47 | MotionVector: User 48 | RenderType: Opaque 49 | disabledShaderPasses: 50 | - MOTIONVECTORS 51 | m_LockedProperties: 52 | m_SavedProperties: 53 | serializedVersion: 3 54 | m_TexEnvs: 55 | - _SampleTexture2D_bd7d283874054d5fb796f4659a806b03_Texture_1_Texture2D: 56 | m_Texture: {fileID: -3260640993307099278, guid: 85b05a350780344c095cb33a0b353b90, type: 3} 57 | m_Scale: {x: 1, y: 1} 58 | m_Offset: {x: 0, y: 0} 59 | - baseColorTexture: 60 | m_Texture: {fileID: -5390149515647955136, guid: 85b05a350780344c095cb33a0b353b90, type: 3} 61 | m_Scale: {x: 1, y: 1} 62 | m_Offset: {x: 0, y: 0} 63 | - emissiveTexture: 64 | m_Texture: {fileID: -3260640993307099278, guid: 85b05a350780344c095cb33a0b353b90, type: 3} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | - metallicRoughnessTexture: 68 | m_Texture: {fileID: -8333767756695452246, guid: 85b05a350780344c095cb33a0b353b90, type: 3} 69 | m_Scale: {x: 1, y: 1} 70 | m_Offset: {x: 0, y: 0} 71 | - normalTexture: 72 | m_Texture: {fileID: -7418166437116789001, guid: 85b05a350780344c095cb33a0b353b90, type: 3} 73 | m_Scale: {x: 1, y: 1} 74 | m_Offset: {x: 0, y: 0} 75 | - occlusionTexture: 76 | m_Texture: {fileID: -7656184459702003963, guid: 85b05a350780344c095cb33a0b353b90, type: 3} 77 | m_Scale: {x: 1, y: 1} 78 | m_Offset: {x: 0, y: 0} 79 | - transmissionTexture: 80 | m_Texture: {fileID: 0} 81 | m_Scale: {x: 1, y: 1} 82 | m_Offset: {x: 0, y: 0} 83 | - unity_Lightmaps: 84 | m_Texture: {fileID: 0} 85 | m_Scale: {x: 1, y: 1} 86 | m_Offset: {x: 0, y: 0} 87 | - unity_LightmapsInd: 88 | m_Texture: {fileID: 0} 89 | m_Scale: {x: 1, y: 1} 90 | m_Offset: {x: 0, y: 0} 91 | - unity_ShadowMasks: 92 | m_Texture: {fileID: 0} 93 | m_Scale: {x: 1, y: 1} 94 | m_Offset: {x: 0, y: 0} 95 | m_Ints: [] 96 | m_Floats: 97 | - _AlphaClip: 0 98 | - _AlphaToMask: 0 99 | - _BUILTIN_AlphaClip: 0 100 | - _BUILTIN_Blend: 0 101 | - _BUILTIN_CullMode: 2 102 | - _BUILTIN_DstBlend: 0 103 | - _BUILTIN_QueueControl: 1 104 | - _BUILTIN_QueueOffset: 0 105 | - _BUILTIN_SrcBlend: 1 106 | - _BUILTIN_Surface: 0 107 | - _BUILTIN_ZTest: 4 108 | - _BUILTIN_ZWrite: 1 109 | - _BUILTIN_ZWriteControl: 0 110 | - _Blend: 0 111 | - _BlendModePreserveSpecular: 0 112 | - _CastShadows: 1 113 | - _Cull: 2 114 | - _DstBlend: 0 115 | - _Emission_Multiplier: 10 116 | - _QueueControl: 1 117 | - _QueueOffset: 0 118 | - _ReceiveShadows: 1 119 | - _SrcBlend: 1 120 | - _Surface: 0 121 | - _WorkflowMode: 1 122 | - _ZTest: 4 123 | - _ZWrite: 1 124 | - _ZWriteControl: 0 125 | - alphaCutoff: 0 126 | - baseColorTexture_texCoord: 0 127 | - emissiveExposureWeight: 0 128 | - emissiveTexture_texCoord: 0 129 | - metallicFactor: 1 130 | - metallicRoughnessTexture_texCoord: 0 131 | - normalTexture_scale: 1 132 | - normalTexture_texCoord: 0 133 | - occlusionTexture_strength: 1 134 | - occlusionTexture_texCoord: 0 135 | - roughnessFactor: 1 136 | - transmissionFactor: 0 137 | m_Colors: 138 | - baseColorFactor: {r: 1, g: 1, b: 1, a: 1} 139 | - baseColorTexture_Rotation: {r: 0, g: 0, b: 0, a: 0} 140 | - emissiveFactor: {r: 1, g: 1, b: 1, a: 1} 141 | - emissiveTexture_Rotation: {r: 0, g: 0, b: 0, a: 0} 142 | - metallicRoughnessTexture_Rotation: {r: 0, g: 0, b: 0, a: 0} 143 | - normalTexture_Rotation: {r: 0, g: 0, b: 0, a: 0} 144 | - occlusionTexture_Rotation: {r: 0, g: 0, b: 0, a: 0} 145 | m_BuildTextureStacks: [] 146 | m_AllowLocking: 1 147 | -------------------------------------------------------------------------------- /Assets/Helmet/Material_MR.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20cf0573ca6dd4275b3f66371a874f78 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Helmet/Postprocess.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-7500160819344550782 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 3 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} 13 | m_Name: Vignette 14 | m_EditorClassIdentifier: 15 | active: 1 16 | color: 17 | m_OverrideState: 0 18 | m_Value: {r: 0, g: 0, b: 0, a: 1} 19 | center: 20 | m_OverrideState: 0 21 | m_Value: {x: 0.5, y: 0.5} 22 | intensity: 23 | m_OverrideState: 1 24 | m_Value: 0.24 25 | smoothness: 26 | m_OverrideState: 1 27 | m_Value: 0.3 28 | rounded: 29 | m_OverrideState: 0 30 | m_Value: 0 31 | --- !u!114 &-4733891654715619188 32 | MonoBehaviour: 33 | m_ObjectHideFlags: 3 34 | m_CorrespondingSourceObject: {fileID: 0} 35 | m_PrefabInstance: {fileID: 0} 36 | m_PrefabAsset: {fileID: 0} 37 | m_GameObject: {fileID: 0} 38 | m_Enabled: 1 39 | m_EditorHideFlags: 0 40 | m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} 41 | m_Name: Tonemapping 42 | m_EditorClassIdentifier: 43 | active: 1 44 | mode: 45 | m_OverrideState: 1 46 | m_Value: 2 47 | neutralHDRRangeReductionMode: 48 | m_OverrideState: 0 49 | m_Value: 2 50 | acesPreset: 51 | m_OverrideState: 0 52 | m_Value: 3 53 | hueShiftAmount: 54 | m_OverrideState: 0 55 | m_Value: 0 56 | detectPaperWhite: 57 | m_OverrideState: 0 58 | m_Value: 0 59 | paperWhite: 60 | m_OverrideState: 0 61 | m_Value: 300 62 | detectBrightnessLimits: 63 | m_OverrideState: 0 64 | m_Value: 1 65 | minNits: 66 | m_OverrideState: 0 67 | m_Value: 0.005 68 | maxNits: 69 | m_OverrideState: 0 70 | m_Value: 1000 71 | --- !u!114 &-780604400664481272 72 | MonoBehaviour: 73 | m_ObjectHideFlags: 3 74 | m_CorrespondingSourceObject: {fileID: 0} 75 | m_PrefabInstance: {fileID: 0} 76 | m_PrefabAsset: {fileID: 0} 77 | m_GameObject: {fileID: 0} 78 | m_Enabled: 1 79 | m_EditorHideFlags: 0 80 | m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3} 81 | m_Name: FilmGrain 82 | m_EditorClassIdentifier: 83 | active: 1 84 | type: 85 | m_OverrideState: 0 86 | m_Value: 0 87 | intensity: 88 | m_OverrideState: 1 89 | m_Value: 0.5 90 | response: 91 | m_OverrideState: 0 92 | m_Value: 0.8 93 | texture: 94 | m_OverrideState: 0 95 | m_Value: {fileID: 0} 96 | --- !u!114 &11400000 97 | MonoBehaviour: 98 | m_ObjectHideFlags: 0 99 | m_CorrespondingSourceObject: {fileID: 0} 100 | m_PrefabInstance: {fileID: 0} 101 | m_PrefabAsset: {fileID: 0} 102 | m_GameObject: {fileID: 0} 103 | m_Enabled: 1 104 | m_EditorHideFlags: 0 105 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 106 | m_Name: Postprocess 107 | m_EditorClassIdentifier: 108 | components: 109 | - {fileID: -4733891654715619188} 110 | - {fileID: -7500160819344550782} 111 | - {fileID: -780604400664481272} 112 | -------------------------------------------------------------------------------- /Assets/Helmet/Postprocess.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3489b3e62b7d453380bbb20f4432fe7 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Outdoor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a2fda4172eb948869e1a34b08adb56e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Outdoor/Outdoor.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d9f4f14bccf7d4a9b8f7a1e9c14d437a 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Outdoor/RendererSSAO.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} 13 | m_Name: RendererSSAO 14 | m_EditorClassIdentifier: 15 | debugShaders: 16 | debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3} 17 | hdrDebugViewPS: {fileID: 4800000, guid: 573620ae32aec764abd4d728906d2587, type: 3} 18 | probeVolumeSamplingDebugComputeShader: {fileID: 7200000, guid: 53626a513ea68ce47b59dc1299fe3959, type: 3} 19 | probeVolumeResources: 20 | probeVolumeDebugShader: {fileID: 4800000, guid: e5c6678ed2aaa91408dd3df699057aae, type: 3} 21 | probeVolumeFragmentationDebugShader: {fileID: 4800000, guid: 03cfc4915c15d504a9ed85ecc404e607, type: 3} 22 | probeVolumeOffsetDebugShader: {fileID: 4800000, guid: 53a11f4ebaebf4049b3638ef78dc9664, type: 3} 23 | probeVolumeSamplingDebugShader: {fileID: 4800000, guid: 8f96cd657dc40064aa21efcc7e50a2e7, type: 3} 24 | probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 57d7c4c16e2765b47a4d2069b311bffe, type: 3} 25 | probeSamplingDebugTexture: {fileID: 2800000, guid: 24ec0e140fb444a44ab96ee80844e18e, type: 3} 26 | m_RendererFeatures: 27 | - {fileID: 2329007895828724513} 28 | m_RendererFeatureMap: 217bf375574c5220 29 | m_UseNativeRenderPass: 0 30 | postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} 31 | shaders: 32 | blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3} 33 | copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} 34 | screenSpaceShadowPS: {fileID: 0} 35 | samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} 36 | stencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3} 37 | fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} 38 | fallbackLoadingPS: {fileID: 4800000, guid: 7f888aff2ac86494babad1c2c5daeee2, type: 3} 39 | materialErrorPS: {fileID: 4800000, guid: 5fd9a8feb75a4b5894c241777f519d4e, type: 3} 40 | coreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3} 41 | coreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b, type: 3} 42 | blitHDROverlay: {fileID: 4800000, guid: a89bee29cffa951418fc1e2da94d1959, type: 3} 43 | cameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf, type: 3} 44 | objectMotionVector: {fileID: 4800000, guid: 7b3ede40266cd49a395def176e1bc486, type: 3} 45 | m_AssetVersion: 2 46 | m_OpaqueLayerMask: 47 | serializedVersion: 2 48 | m_Bits: 4294967295 49 | m_TransparentLayerMask: 50 | serializedVersion: 2 51 | m_Bits: 4294967295 52 | m_DefaultStencilState: 53 | overrideStencilState: 0 54 | stencilReference: 0 55 | stencilCompareFunction: 8 56 | passOperation: 2 57 | failOperation: 0 58 | zFailOperation: 0 59 | m_ShadowTransparentReceive: 1 60 | m_RenderingMode: 0 61 | m_DepthPrimingMode: 0 62 | m_CopyDepthMode: 1 63 | m_AccurateGbufferNormals: 0 64 | m_IntermediateTextureMode: 1 65 | --- !u!114 &2329007895828724513 66 | MonoBehaviour: 67 | m_ObjectHideFlags: 0 68 | m_CorrespondingSourceObject: {fileID: 0} 69 | m_PrefabInstance: {fileID: 0} 70 | m_PrefabAsset: {fileID: 0} 71 | m_GameObject: {fileID: 0} 72 | m_Enabled: 1 73 | m_EditorHideFlags: 0 74 | m_Script: {fileID: 11500000, guid: f62c9c65cf3354c93be831c8bc075510, type: 3} 75 | m_Name: ScreenSpaceAmbientOcclusion 76 | m_EditorClassIdentifier: 77 | m_Active: 1 78 | m_Settings: 79 | AOMethod: 0 80 | Downsample: 0 81 | AfterOpaque: 0 82 | Source: 1 83 | NormalSamples: 1 84 | Intensity: 3 85 | DirectLightingStrength: 0.25 86 | Radius: 0.05 87 | Samples: 1 88 | BlurQuality: 0 89 | Falloff: 100 90 | SampleCount: -1 91 | m_BlueNoise256Textures: 92 | - {fileID: 2800000, guid: 36f118343fc974119bee3d09e2111500, type: 3} 93 | - {fileID: 2800000, guid: 4b7b083e6b6734e8bb2838b0b50a0bc8, type: 3} 94 | - {fileID: 2800000, guid: c06cc21c692f94f5fb5206247191eeee, type: 3} 95 | - {fileID: 2800000, guid: cb76dd40fa7654f9587f6a344f125c9a, type: 3} 96 | - {fileID: 2800000, guid: e32226222ff144b24bf3a5a451de54bc, type: 3} 97 | - {fileID: 2800000, guid: 3302065f671a8450b82c9ddf07426f3a, type: 3} 98 | - {fileID: 2800000, guid: 56a77a3e8d64f47b6afe9e3c95cb57d5, type: 3} 99 | m_Shader: {fileID: 4800000, guid: 0849e84e3d62649e8882e9d6f056a017, type: 3} 100 | -------------------------------------------------------------------------------- /Assets/Outdoor/RendererSSAO.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d29af53ca3774670a1e61ec8f3ff859 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Outdoor/Scene.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-5999041514614746837 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 3 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} 13 | m_Name: Tonemapping 14 | m_EditorClassIdentifier: 15 | active: 1 16 | mode: 17 | m_OverrideState: 1 18 | m_Value: 2 19 | neutralHDRRangeReductionMode: 20 | m_OverrideState: 0 21 | m_Value: 2 22 | acesPreset: 23 | m_OverrideState: 0 24 | m_Value: 3 25 | hueShiftAmount: 26 | m_OverrideState: 0 27 | m_Value: 0 28 | detectPaperWhite: 29 | m_OverrideState: 0 30 | m_Value: 0 31 | paperWhite: 32 | m_OverrideState: 0 33 | m_Value: 300 34 | detectBrightnessLimits: 35 | m_OverrideState: 0 36 | m_Value: 1 37 | minNits: 38 | m_OverrideState: 0 39 | m_Value: 0.005 40 | maxNits: 41 | m_OverrideState: 0 42 | m_Value: 1000 43 | --- !u!114 &-1263974550800795831 44 | MonoBehaviour: 45 | m_ObjectHideFlags: 3 46 | m_CorrespondingSourceObject: {fileID: 0} 47 | m_PrefabInstance: {fileID: 0} 48 | m_PrefabAsset: {fileID: 0} 49 | m_GameObject: {fileID: 0} 50 | m_Enabled: 1 51 | m_EditorHideFlags: 0 52 | m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} 53 | m_Name: Bloom 54 | m_EditorClassIdentifier: 55 | active: 1 56 | skipIterations: 57 | m_OverrideState: 0 58 | m_Value: 1 59 | threshold: 60 | m_OverrideState: 0 61 | m_Value: 0.9 62 | intensity: 63 | m_OverrideState: 1 64 | m_Value: 0.8 65 | scatter: 66 | m_OverrideState: 0 67 | m_Value: 0.7 68 | clamp: 69 | m_OverrideState: 0 70 | m_Value: 65472 71 | tint: 72 | m_OverrideState: 0 73 | m_Value: {r: 1, g: 1, b: 1, a: 1} 74 | highQualityFiltering: 75 | m_OverrideState: 0 76 | m_Value: 0 77 | downscale: 78 | m_OverrideState: 0 79 | m_Value: 0 80 | maxIterations: 81 | m_OverrideState: 0 82 | m_Value: 6 83 | dirtTexture: 84 | m_OverrideState: 0 85 | m_Value: {fileID: 0} 86 | dimension: 1 87 | dirtIntensity: 88 | m_OverrideState: 0 89 | m_Value: 0 90 | --- !u!114 &11400000 91 | MonoBehaviour: 92 | m_ObjectHideFlags: 0 93 | m_CorrespondingSourceObject: {fileID: 0} 94 | m_PrefabInstance: {fileID: 0} 95 | m_PrefabAsset: {fileID: 0} 96 | m_GameObject: {fileID: 0} 97 | m_Enabled: 1 98 | m_EditorHideFlags: 0 99 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 100 | m_Name: Scene 101 | m_EditorClassIdentifier: 102 | components: 103 | - {fileID: -5999041514614746837} 104 | - {fileID: 5868443956599231524} 105 | - {fileID: 6799659667737098104} 106 | - {fileID: 3589151336458462409} 107 | - {fileID: 506500985921270461} 108 | - {fileID: -1263974550800795831} 109 | - {fileID: 1153594979916507122} 110 | --- !u!114 &506500985921270461 111 | MonoBehaviour: 112 | m_ObjectHideFlags: 3 113 | m_CorrespondingSourceObject: {fileID: 0} 114 | m_PrefabInstance: {fileID: 0} 115 | m_PrefabAsset: {fileID: 0} 116 | m_GameObject: {fileID: 0} 117 | m_Enabled: 1 118 | m_EditorHideFlags: 0 119 | m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3} 120 | m_Name: ScreenSpaceLensFlare 121 | m_EditorClassIdentifier: 122 | active: 0 123 | intensity: 124 | m_OverrideState: 1 125 | m_Value: 0.5 126 | tintColor: 127 | m_OverrideState: 0 128 | m_Value: {r: 1, g: 1, b: 1, a: 1} 129 | bloomMip: 130 | m_OverrideState: 0 131 | m_Value: 1 132 | firstFlareIntensity: 133 | m_OverrideState: 0 134 | m_Value: 1 135 | secondaryFlareIntensity: 136 | m_OverrideState: 0 137 | m_Value: 1 138 | warpedFlareIntensity: 139 | m_OverrideState: 0 140 | m_Value: 1 141 | warpedFlareScale: 142 | m_OverrideState: 0 143 | m_Value: {x: 1, y: 1} 144 | samples: 145 | m_OverrideState: 0 146 | m_Value: 1 147 | sampleDimmer: 148 | m_OverrideState: 0 149 | m_Value: 0.5 150 | vignetteEffect: 151 | m_OverrideState: 0 152 | m_Value: 1 153 | startingPosition: 154 | m_OverrideState: 0 155 | m_Value: 1.25 156 | scale: 157 | m_OverrideState: 0 158 | m_Value: 1.5 159 | streaksIntensity: 160 | m_OverrideState: 0 161 | m_Value: 0 162 | streaksLength: 163 | m_OverrideState: 0 164 | m_Value: 0.5 165 | streaksOrientation: 166 | m_OverrideState: 0 167 | m_Value: 0 168 | streaksThreshold: 169 | m_OverrideState: 0 170 | m_Value: 0.25 171 | resolution: 172 | m_OverrideState: 0 173 | m_Value: 4 174 | chromaticAbberationIntensity: 175 | m_OverrideState: 0 176 | m_Value: 0.5 177 | --- !u!114 &1153594979916507122 178 | MonoBehaviour: 179 | m_ObjectHideFlags: 3 180 | m_CorrespondingSourceObject: {fileID: 0} 181 | m_PrefabInstance: {fileID: 0} 182 | m_PrefabAsset: {fileID: 0} 183 | m_GameObject: {fileID: 0} 184 | m_Enabled: 1 185 | m_EditorHideFlags: 0 186 | m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3} 187 | m_Name: FilmGrain 188 | m_EditorClassIdentifier: 189 | active: 1 190 | type: 191 | m_OverrideState: 0 192 | m_Value: 0 193 | intensity: 194 | m_OverrideState: 1 195 | m_Value: 0.4 196 | response: 197 | m_OverrideState: 0 198 | m_Value: 0.8 199 | texture: 200 | m_OverrideState: 0 201 | m_Value: {fileID: 0} 202 | --- !u!114 &3589151336458462409 203 | MonoBehaviour: 204 | m_ObjectHideFlags: 3 205 | m_CorrespondingSourceObject: {fileID: 0} 206 | m_PrefabInstance: {fileID: 0} 207 | m_PrefabAsset: {fileID: 0} 208 | m_GameObject: {fileID: 0} 209 | m_Enabled: 1 210 | m_EditorHideFlags: 0 211 | m_Script: {fileID: 11500000, guid: 66f335fb1ffd8684294ad653bf1c7564, type: 3} 212 | m_Name: ColorAdjustments 213 | m_EditorClassIdentifier: 214 | active: 1 215 | postExposure: 216 | m_OverrideState: 1 217 | m_Value: 0.1 218 | contrast: 219 | m_OverrideState: 0 220 | m_Value: 0 221 | colorFilter: 222 | m_OverrideState: 0 223 | m_Value: {r: 1, g: 1, b: 1, a: 1} 224 | hueShift: 225 | m_OverrideState: 0 226 | m_Value: 0 227 | saturation: 228 | m_OverrideState: 1 229 | m_Value: 30 230 | --- !u!114 &5868443956599231524 231 | MonoBehaviour: 232 | m_ObjectHideFlags: 3 233 | m_CorrespondingSourceObject: {fileID: 0} 234 | m_PrefabInstance: {fileID: 0} 235 | m_PrefabAsset: {fileID: 0} 236 | m_GameObject: {fileID: 0} 237 | m_Enabled: 1 238 | m_EditorHideFlags: 0 239 | m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} 240 | m_Name: Vignette 241 | m_EditorClassIdentifier: 242 | active: 1 243 | color: 244 | m_OverrideState: 0 245 | m_Value: {r: 0, g: 0, b: 0, a: 1} 246 | center: 247 | m_OverrideState: 0 248 | m_Value: {x: 0.5, y: 0.5} 249 | intensity: 250 | m_OverrideState: 1 251 | m_Value: 0.25 252 | smoothness: 253 | m_OverrideState: 1 254 | m_Value: 0.3 255 | rounded: 256 | m_OverrideState: 0 257 | m_Value: 0 258 | --- !u!114 &6799659667737098104 259 | MonoBehaviour: 260 | m_ObjectHideFlags: 3 261 | m_CorrespondingSourceObject: {fileID: 0} 262 | m_PrefabInstance: {fileID: 0} 263 | m_PrefabAsset: {fileID: 0} 264 | m_GameObject: {fileID: 0} 265 | m_Enabled: 1 266 | m_EditorHideFlags: 0 267 | m_Script: {fileID: 11500000, guid: 81180773991d8724ab7f2d216912b564, type: 3} 268 | m_Name: ChromaticAberration 269 | m_EditorClassIdentifier: 270 | active: 1 271 | intensity: 272 | m_OverrideState: 1 273 | m_Value: 0.06 274 | -------------------------------------------------------------------------------- /Assets/Outdoor/Scene.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df276c27392314b688cfad3548bcbe72 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Outdoor/Skybox.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-7687230628663063530 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 7 16 | --- !u!21 &2100000 17 | Material: 18 | serializedVersion: 8 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_Name: Skybox 24 | m_Shader: {fileID: 106, guid: 0000000000000000f000000000000000, type: 0} 25 | m_Parent: {fileID: 0} 26 | m_ModifiedSerializedProperties: 0 27 | m_ValidKeywords: 28 | - _SUNDISK_HIGH_QUALITY 29 | m_InvalidKeywords: [] 30 | m_LightmapFlags: 4 31 | m_EnableInstancingVariants: 0 32 | m_DoubleSidedGI: 0 33 | m_CustomRenderQueue: -1 34 | stringTagMap: {} 35 | disabledShaderPasses: [] 36 | m_LockedProperties: 37 | m_SavedProperties: 38 | serializedVersion: 3 39 | m_TexEnvs: 40 | - _BaseMap: 41 | m_Texture: {fileID: 0} 42 | m_Scale: {x: 1, y: 1} 43 | m_Offset: {x: 0, y: 0} 44 | - _BumpMap: 45 | m_Texture: {fileID: 0} 46 | m_Scale: {x: 1, y: 1} 47 | m_Offset: {x: 0, y: 0} 48 | - _DetailAlbedoMap: 49 | m_Texture: {fileID: 0} 50 | m_Scale: {x: 1, y: 1} 51 | m_Offset: {x: 0, y: 0} 52 | - _DetailMask: 53 | m_Texture: {fileID: 0} 54 | m_Scale: {x: 1, y: 1} 55 | m_Offset: {x: 0, y: 0} 56 | - _DetailNormalMap: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | - _EmissionMap: 61 | m_Texture: {fileID: 0} 62 | m_Scale: {x: 1, y: 1} 63 | m_Offset: {x: 0, y: 0} 64 | - _MainTex: 65 | m_Texture: {fileID: 0} 66 | m_Scale: {x: 1, y: 1} 67 | m_Offset: {x: 0, y: 0} 68 | - _MetallicGlossMap: 69 | m_Texture: {fileID: 0} 70 | m_Scale: {x: 1, y: 1} 71 | m_Offset: {x: 0, y: 0} 72 | - _OcclusionMap: 73 | m_Texture: {fileID: 0} 74 | m_Scale: {x: 1, y: 1} 75 | m_Offset: {x: 0, y: 0} 76 | - _ParallaxMap: 77 | m_Texture: {fileID: 0} 78 | m_Scale: {x: 1, y: 1} 79 | m_Offset: {x: 0, y: 0} 80 | - _SpecGlossMap: 81 | m_Texture: {fileID: 0} 82 | m_Scale: {x: 1, y: 1} 83 | m_Offset: {x: 0, y: 0} 84 | - unity_Lightmaps: 85 | m_Texture: {fileID: 0} 86 | m_Scale: {x: 1, y: 1} 87 | m_Offset: {x: 0, y: 0} 88 | - unity_LightmapsInd: 89 | m_Texture: {fileID: 0} 90 | m_Scale: {x: 1, y: 1} 91 | m_Offset: {x: 0, y: 0} 92 | - unity_ShadowMasks: 93 | m_Texture: {fileID: 0} 94 | m_Scale: {x: 1, y: 1} 95 | m_Offset: {x: 0, y: 0} 96 | m_Ints: [] 97 | m_Floats: 98 | - _AlphaClip: 0 99 | - _AlphaToMask: 0 100 | - _AtmosphereThickness: 1.25 101 | - _Blend: 0 102 | - _BlendModePreserveSpecular: 1 103 | - _BumpScale: 1 104 | - _ClearCoatMask: 0 105 | - _ClearCoatSmoothness: 0 106 | - _Cull: 2 107 | - _Cutoff: 0.5 108 | - _DetailAlbedoMapScale: 1 109 | - _DetailNormalMapScale: 1 110 | - _DstBlend: 0 111 | - _DstBlendAlpha: 0 112 | - _EnvironmentReflections: 1 113 | - _Exposure: 1.3 114 | - _GlossMapScale: 0 115 | - _Glossiness: 0 116 | - _GlossyReflections: 0 117 | - _Metallic: 0 118 | - _OcclusionStrength: 1 119 | - _Parallax: 0.005 120 | - _QueueOffset: 0 121 | - _ReceiveShadows: 1 122 | - _Smoothness: 0.5 123 | - _SmoothnessTextureChannel: 0 124 | - _SpecularHighlights: 1 125 | - _SrcBlend: 1 126 | - _SrcBlendAlpha: 1 127 | - _SunDisk: 2 128 | - _SunSize: 0.021 129 | - _SunSizeConvergence: 5 130 | - _Surface: 0 131 | - _WorkflowMode: 1 132 | - _ZWrite: 1 133 | m_Colors: 134 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 135 | - _Color: {r: 1, g: 1, b: 1, a: 1} 136 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 137 | - _GroundColor: {r: 0.36899996, g: 0.34899998, b: 0.34099993, a: 1} 138 | - _SkyTint: {r: 0.5, g: 0.5, b: 0.5, a: 1} 139 | - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} 140 | m_BuildTextureStacks: [] 141 | -------------------------------------------------------------------------------- /Assets/Outdoor/Skybox.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b653f80c57a144f7eafa03a0ca8f702b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Outdoor/Teapot.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 8 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Teapot 11 | m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} 12 | m_Parent: {fileID: 0} 13 | m_ModifiedSerializedProperties: 0 14 | m_ValidKeywords: [] 15 | m_InvalidKeywords: [] 16 | m_LightmapFlags: 4 17 | m_EnableInstancingVariants: 0 18 | m_DoubleSidedGI: 0 19 | m_CustomRenderQueue: -1 20 | stringTagMap: 21 | RenderType: Opaque 22 | disabledShaderPasses: 23 | - MOTIONVECTORS 24 | m_LockedProperties: 25 | m_SavedProperties: 26 | serializedVersion: 3 27 | m_TexEnvs: 28 | - _BaseMap: 29 | m_Texture: {fileID: 0} 30 | m_Scale: {x: 1, y: 1} 31 | m_Offset: {x: 0, y: 0} 32 | - _BumpMap: 33 | m_Texture: {fileID: 0} 34 | m_Scale: {x: 1, y: 1} 35 | m_Offset: {x: 0, y: 0} 36 | - _DetailAlbedoMap: 37 | m_Texture: {fileID: 0} 38 | m_Scale: {x: 1, y: 1} 39 | m_Offset: {x: 0, y: 0} 40 | - _DetailMask: 41 | m_Texture: {fileID: 0} 42 | m_Scale: {x: 1, y: 1} 43 | m_Offset: {x: 0, y: 0} 44 | - _DetailNormalMap: 45 | m_Texture: {fileID: 0} 46 | m_Scale: {x: 1, y: 1} 47 | m_Offset: {x: 0, y: 0} 48 | - _EmissionMap: 49 | m_Texture: {fileID: 0} 50 | m_Scale: {x: 1, y: 1} 51 | m_Offset: {x: 0, y: 0} 52 | - _MainTex: 53 | m_Texture: {fileID: 0} 54 | m_Scale: {x: 1, y: 1} 55 | m_Offset: {x: 0, y: 0} 56 | - _MetallicGlossMap: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | - _OcclusionMap: 61 | m_Texture: {fileID: 0} 62 | m_Scale: {x: 1, y: 1} 63 | m_Offset: {x: 0, y: 0} 64 | - _ParallaxMap: 65 | m_Texture: {fileID: 0} 66 | m_Scale: {x: 1, y: 1} 67 | m_Offset: {x: 0, y: 0} 68 | - _SpecGlossMap: 69 | m_Texture: {fileID: 0} 70 | m_Scale: {x: 1, y: 1} 71 | m_Offset: {x: 0, y: 0} 72 | - unity_Lightmaps: 73 | m_Texture: {fileID: 0} 74 | m_Scale: {x: 1, y: 1} 75 | m_Offset: {x: 0, y: 0} 76 | - unity_LightmapsInd: 77 | m_Texture: {fileID: 0} 78 | m_Scale: {x: 1, y: 1} 79 | m_Offset: {x: 0, y: 0} 80 | - unity_ShadowMasks: 81 | m_Texture: {fileID: 0} 82 | m_Scale: {x: 1, y: 1} 83 | m_Offset: {x: 0, y: 0} 84 | m_Ints: [] 85 | m_Floats: 86 | - _AlphaClip: 0 87 | - _AlphaToMask: 0 88 | - _Blend: 0 89 | - _BlendModePreserveSpecular: 1 90 | - _BumpScale: 1 91 | - _ClearCoatMask: 0 92 | - _ClearCoatSmoothness: 0 93 | - _Cull: 2 94 | - _Cutoff: 0.5 95 | - _DetailAlbedoMapScale: 1 96 | - _DetailNormalMapScale: 1 97 | - _DstBlend: 0 98 | - _DstBlendAlpha: 0 99 | - _EnvironmentReflections: 1 100 | - _GlossMapScale: 0 101 | - _Glossiness: 0 102 | - _GlossyReflections: 0 103 | - _Metallic: 0 104 | - _OcclusionStrength: 1 105 | - _Parallax: 0.005 106 | - _QueueOffset: 0 107 | - _ReceiveShadows: 1 108 | - _Smoothness: 0 109 | - _SmoothnessTextureChannel: 0 110 | - _SpecularHighlights: 1 111 | - _SrcBlend: 1 112 | - _SrcBlendAlpha: 1 113 | - _Surface: 0 114 | - _WorkflowMode: 1 115 | - _ZWrite: 1 116 | m_Colors: 117 | - _BaseColor: {r: 0.38656995, g: 0.6091768, b: 0.6886792, a: 1} 118 | - _Color: {r: 0.38656992, g: 0.6091768, b: 0.6886792, a: 1} 119 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 120 | - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} 121 | m_BuildTextureStacks: [] 122 | m_AllowLocking: 1 123 | --- !u!114 &5963028065706537264 124 | MonoBehaviour: 125 | m_ObjectHideFlags: 11 126 | m_CorrespondingSourceObject: {fileID: 0} 127 | m_PrefabInstance: {fileID: 0} 128 | m_PrefabAsset: {fileID: 0} 129 | m_GameObject: {fileID: 0} 130 | m_Enabled: 1 131 | m_EditorHideFlags: 0 132 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 133 | m_Name: 134 | m_EditorClassIdentifier: 135 | version: 9 136 | -------------------------------------------------------------------------------- /Assets/Outdoor/Teapot.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83aa17e625d104c179b1864a1150a2c6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Outdoor/Teapot.metamesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/ScreenSpaceLensFlareTest/8a7213126302702ff553e70aac6a735a3baeec07/Assets/Outdoor/Teapot.metamesh -------------------------------------------------------------------------------- /Assets/Outdoor/Teapot.metamesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68da4d8a46f26431d8c1afbabfe658b4 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: a8b5f06e412d587cbac1226722904238, type: 3} 11 | _shape: 8 12 | _plane: 13 | Size: 14 | x: 1 15 | y: 1 16 | Subdivisions: 17 | x: 2 18 | y: 2 19 | Axis: 1 20 | DoubleSided: 0 21 | _box: 22 | Width: 1 23 | Height: 1 24 | Depth: 1 25 | _sphere: 26 | Radius: 1 27 | Columns: 24 28 | Rows: 12 29 | Axis: 1 30 | _icosphere: 31 | Radius: 1 32 | Subdivision: 2 33 | _cylinder: 34 | TopRadius: 1 35 | BottomRadius: 1 36 | Height: 1 37 | Columns: 24 38 | Rows: 12 39 | Axis: 1 40 | Caps: 1 41 | _roundedBox: 42 | Width: 1 43 | Height: 1 44 | Depth: 1 45 | Divisions: 3 46 | Radius: 0.1 47 | _ring: 48 | Radius: 1 49 | Width: 0.1 50 | Angle: 1 51 | Segments: 32 52 | Axis: 2 53 | DoubleSided: 0 54 | _disc: 55 | Radius: 1 56 | Angle: 1 57 | Segments: 32 58 | Axis: 2 59 | DoubleSided: 0 60 | _teapot: 61 | Subdivision: 12 62 | _generateLightmapUVs: 0 63 | _readWriteMeshes: 0 64 | -------------------------------------------------------------------------------- /Assets/Outdoor/Timeline.playable: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-5664992611376647440 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 1 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3} 13 | m_Name: Animation Track 14 | m_EditorClassIdentifier: 15 | m_Version: 3 16 | m_AnimClip: {fileID: 0} 17 | m_Locked: 0 18 | m_Muted: 0 19 | m_CustomPlayableFullTypename: 20 | m_Curves: {fileID: 0} 21 | m_Parent: {fileID: 11400000} 22 | m_Children: [] 23 | m_Clips: [] 24 | m_Markers: 25 | m_Objects: [] 26 | m_InfiniteClipPreExtrapolation: 1 27 | m_InfiniteClipPostExtrapolation: 1 28 | m_InfiniteClipOffsetPosition: {x: 0, y: 0.45, z: 0} 29 | m_InfiniteClipOffsetEulerAngles: {x: -0, y: 0, z: 0} 30 | m_InfiniteClipTimeOffset: 0 31 | m_InfiniteClipRemoveOffset: 0 32 | m_InfiniteClipApplyFootIK: 1 33 | mInfiniteClipLoop: 0 34 | m_MatchTargetFields: 63 35 | m_Position: {x: 0, y: 0, z: 0} 36 | m_EulerAngles: {x: 0, y: 0, z: 0} 37 | m_AvatarMask: {fileID: 0} 38 | m_ApplyAvatarMask: 1 39 | m_TrackOffset: 0 40 | m_InfiniteClip: {fileID: 548267520637874396} 41 | m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1} 42 | m_Rotation: {x: 0, y: 0, z: 0, w: 1} 43 | m_ApplyOffsets: 0 44 | --- !u!114 &-5360121003290432567 45 | MonoBehaviour: 46 | m_ObjectHideFlags: 0 47 | m_CorrespondingSourceObject: {fileID: 0} 48 | m_PrefabInstance: {fileID: 0} 49 | m_PrefabAsset: {fileID: 0} 50 | m_GameObject: {fileID: 0} 51 | m_Enabled: 1 52 | m_EditorHideFlags: 0 53 | m_Script: {fileID: 11500000, guid: 6fde0a8ac3e6b482c95fa602e65ab045, type: 3} 54 | m_Name: RecorderClip 55 | m_EditorClassIdentifier: 56 | enabled: 1 57 | take: 11 58 | captureEveryNthFrame: 1 59 | fileNameGenerator: 60 | m_Path: 61 | m_Root: 0 62 | m_Leaf: Recordings 63 | m_ForceAssetFolder: 0 64 | m_AbsolutePath: 65 | m_FileName: _ 66 | m_Version: 1 67 | encoderSettings: 68 | rid: 1978457257718054914 69 | captureAlpha: 0 70 | captureAudio: 0 71 | m_ImageInputSelector: 72 | m_Selected: gameViewInputSettings 73 | gameViewInputSettings: 74 | m_OutputResolution: 75 | m_CustomWidth: 1024 76 | m_CustomHeight: 1024 77 | imageHeight: 1080 78 | maxSupportedHeight: 2160 79 | m_AspectRatio: 80 | m_CustomAspectX: 1 81 | m_CustomAspectY: 1 82 | m_ImageAspect: 1 83 | flipFinalOutput: 0 84 | cameraInputSettings: 85 | m_OutputResolution: 86 | m_CustomWidth: 1024 87 | m_CustomHeight: 1024 88 | imageHeight: 0 89 | maxSupportedHeight: 4320 90 | m_AspectRatio: 91 | m_CustomAspectX: 1 92 | m_CustomAspectY: 1 93 | m_ImageAspect: 1 94 | source: 2 95 | cameraTag: 96 | flipFinalOutput: 0 97 | captureUI: 0 98 | camera360InputSettings: 99 | source: 2 100 | cameraTag: 101 | flipFinalOutput: 0 102 | renderStereo: 1 103 | stereoSeparation: 0.065 104 | mapSize: 1024 105 | m_OutputWidth: 1024 106 | m_OutputHeight: 2048 107 | renderTextureInputSettings: 108 | renderTexture: {fileID: 0} 109 | flipFinalOutput: 0 110 | renderTextureSamplerSettings: 111 | source: 1 112 | m_RenderWidth: 1280 113 | m_RenderHeight: 720 114 | m_OutputWidth: 1280 115 | m_OutputHeight: 720 116 | outputAspectRatio: 117 | m_CustomAspectX: 1 118 | m_CustomAspectY: 1 119 | m_ImageAspect: 1 120 | superSampling: 1 121 | superKernelPower: 16 122 | superKernelScale: 1 123 | cameraTag: 124 | colorSpace: 0 125 | flipFinalOutput: 0 126 | m_AudioInputSettings: 127 | preserveAudio: 0 128 | _accumulationSettings: 129 | rid: 1978457257718054913 130 | outputFormat: 0 131 | encodingQuality: 2 132 | containerFormatSelected: 0 133 | encoderSelected: 0 134 | encoderPresetSelected: 0 135 | encoderPresetSelectedName: 136 | encoderPresetSelectedOptions: 137 | encoderPresetSelectedSuffixes: 138 | encoderColorDefinitionSelected: 0 139 | encoderCustomOptions: 140 | references: 141 | version: 2 142 | RefIds: 143 | - rid: 1978457257718054913 144 | type: {class: AccumulationSettings, ns: , asm: Unity.Recorder.Editor} 145 | data: 146 | captureAccumulation: 0 147 | samples: 1 148 | shutterInterval: 1 149 | shutterProfileType: 0 150 | shutterProfileCurve: 151 | serializedVersion: 2 152 | m_Curve: 153 | - serializedVersion: 3 154 | time: 0 155 | value: 1 156 | inSlope: 0 157 | outSlope: 0 158 | tangentMode: 0 159 | weightedMode: 0 160 | inWeight: 0 161 | outWeight: 0 162 | - serializedVersion: 3 163 | time: 1 164 | value: 1 165 | inSlope: 0 166 | outSlope: 0 167 | tangentMode: 0 168 | weightedMode: 0 169 | inWeight: 0 170 | outWeight: 0 171 | m_PreInfinity: 2 172 | m_PostInfinity: 2 173 | m_RotationOrder: 4 174 | shutterFullyOpen: 0.25 175 | shutterBeginsClosing: 0.75 176 | useSubPixelJitter: 1 177 | - rid: 1978457257718054914 178 | type: {class: ProResEncoderSettings, ns: UnityEditor.Recorder.Encoder, asm: Unity.Recorder.Editor} 179 | data: 180 | outputFormat: 2 181 | --- !u!114 &-646682561096055206 182 | MonoBehaviour: 183 | m_ObjectHideFlags: 1 184 | m_CorrespondingSourceObject: {fileID: 0} 185 | m_PrefabInstance: {fileID: 0} 186 | m_PrefabAsset: {fileID: 0} 187 | m_GameObject: {fileID: 0} 188 | m_Enabled: 1 189 | m_EditorHideFlags: 0 190 | m_Script: {fileID: 11500000, guid: f1e95aa6d658d694785bfde37c857fff, type: 3} 191 | m_Name: RecorderClip 192 | m_EditorClassIdentifier: 193 | settings: {fileID: -5360121003290432567} 194 | --- !u!114 &11400000 195 | MonoBehaviour: 196 | m_ObjectHideFlags: 0 197 | m_CorrespondingSourceObject: {fileID: 0} 198 | m_PrefabInstance: {fileID: 0} 199 | m_PrefabAsset: {fileID: 0} 200 | m_GameObject: {fileID: 0} 201 | m_Enabled: 1 202 | m_EditorHideFlags: 0 203 | m_Script: {fileID: 11500000, guid: bfda56da833e2384a9677cd3c976a436, type: 3} 204 | m_Name: Timeline 205 | m_EditorClassIdentifier: 206 | m_Version: 0 207 | m_Tracks: 208 | - {fileID: -5664992611376647440} 209 | - {fileID: 7517053084740244088} 210 | m_FixedDuration: 0 211 | m_EditorSettings: 212 | m_Framerate: 60 213 | m_ScenePreview: 1 214 | m_DurationMode: 0 215 | m_MarkerTrack: {fileID: 0} 216 | --- !u!74 &548267520637874396 217 | AnimationClip: 218 | m_ObjectHideFlags: 0 219 | m_CorrespondingSourceObject: {fileID: 0} 220 | m_PrefabInstance: {fileID: 0} 221 | m_PrefabAsset: {fileID: 0} 222 | m_Name: Recorded 223 | serializedVersion: 7 224 | m_Legacy: 0 225 | m_Compressed: 0 226 | m_UseHighQualityCurve: 1 227 | m_RotationCurves: [] 228 | m_CompressedRotationCurves: [] 229 | m_EulerCurves: 230 | - curve: 231 | serializedVersion: 2 232 | m_Curve: 233 | - serializedVersion: 3 234 | time: 0 235 | value: {x: 0, y: 16, z: 0} 236 | inSlope: {x: 0, y: 0, z: 0} 237 | outSlope: {x: 0, y: -4, z: 0} 238 | tangentMode: 0 239 | weightedMode: 0 240 | inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} 241 | outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} 242 | - serializedVersion: 3 243 | time: 8 244 | value: {x: 0, y: -16, z: 0} 245 | inSlope: {x: 0, y: 0, z: 0} 246 | outSlope: {x: 0, y: 0, z: 0} 247 | tangentMode: 0 248 | weightedMode: 0 249 | inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} 250 | outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334} 251 | m_PreInfinity: 2 252 | m_PostInfinity: 2 253 | m_RotationOrder: 4 254 | path: 255 | m_PositionCurves: [] 256 | m_ScaleCurves: [] 257 | m_FloatCurves: [] 258 | m_PPtrCurves: [] 259 | m_SampleRate: 60 260 | m_WrapMode: 0 261 | m_Bounds: 262 | m_Center: {x: 0, y: 0, z: 0} 263 | m_Extent: {x: 0, y: 0, z: 0} 264 | m_ClipBindingConstant: 265 | genericBindings: 266 | - serializedVersion: 2 267 | path: 0 268 | attribute: 4 269 | script: {fileID: 0} 270 | typeID: 4 271 | customType: 4 272 | isPPtrCurve: 0 273 | isIntCurve: 0 274 | isSerializeReferenceCurve: 0 275 | pptrCurveMapping: [] 276 | m_AnimationClipSettings: 277 | serializedVersion: 2 278 | m_AdditiveReferencePoseClip: {fileID: 0} 279 | m_AdditiveReferencePoseTime: 0 280 | m_StartTime: 0 281 | m_StopTime: 8 282 | m_OrientationOffsetY: 0 283 | m_Level: 0 284 | m_CycleOffset: 0 285 | m_HasAdditiveReferencePose: 0 286 | m_LoopTime: 0 287 | m_LoopBlend: 0 288 | m_LoopBlendOrientation: 0 289 | m_LoopBlendPositionY: 0 290 | m_LoopBlendPositionXZ: 0 291 | m_KeepOriginalOrientation: 0 292 | m_KeepOriginalPositionY: 1 293 | m_KeepOriginalPositionXZ: 0 294 | m_HeightFromFeet: 0 295 | m_Mirror: 0 296 | m_EditorCurves: 297 | - serializedVersion: 2 298 | curve: 299 | serializedVersion: 2 300 | m_Curve: 301 | - serializedVersion: 3 302 | time: 0 303 | value: 16 304 | inSlope: 0 305 | outSlope: -4 306 | tangentMode: 65 307 | weightedMode: 0 308 | inWeight: 0.33333334 309 | outWeight: 0.33333334 310 | - serializedVersion: 3 311 | time: 8 312 | value: -16 313 | inSlope: 0 314 | outSlope: 0 315 | tangentMode: 65 316 | weightedMode: 0 317 | inWeight: 0.33333334 318 | outWeight: 0.33333334 319 | m_PreInfinity: 2 320 | m_PostInfinity: 2 321 | m_RotationOrder: 4 322 | attribute: localEulerAnglesRaw.y 323 | path: 324 | classID: 4 325 | script: {fileID: 0} 326 | flags: 16 327 | m_EulerEditorCurves: [] 328 | m_HasGenericRootTransform: 1 329 | m_HasMotionFloatCurves: 0 330 | m_Events: [] 331 | --- !u!114 &7517053084740244088 332 | MonoBehaviour: 333 | m_ObjectHideFlags: 1 334 | m_CorrespondingSourceObject: {fileID: 0} 335 | m_PrefabInstance: {fileID: 0} 336 | m_PrefabAsset: {fileID: 0} 337 | m_GameObject: {fileID: 0} 338 | m_Enabled: 1 339 | m_EditorHideFlags: 0 340 | m_Script: {fileID: 11500000, guid: 0e6cf5671577b7344ba25c25b4346ce4, type: 3} 341 | m_Name: Recorder Track 342 | m_EditorClassIdentifier: 343 | m_Version: 3 344 | m_AnimClip: {fileID: 0} 345 | m_Locked: 0 346 | m_Muted: 1 347 | m_CustomPlayableFullTypename: 348 | m_Curves: {fileID: 0} 349 | m_Parent: {fileID: 11400000} 350 | m_Children: [] 351 | m_Clips: 352 | - m_Version: 1 353 | m_Start: 0 354 | m_ClipIn: 0 355 | m_Asset: {fileID: -646682561096055206} 356 | m_Duration: 8 357 | m_TimeScale: 1 358 | m_ParentTrack: {fileID: 7517053084740244088} 359 | m_EaseInDuration: 0 360 | m_EaseOutDuration: 0 361 | m_BlendInDuration: 0 362 | m_BlendOutDuration: 0 363 | m_MixInCurve: 364 | serializedVersion: 2 365 | m_Curve: 366 | - serializedVersion: 3 367 | time: 0 368 | value: 0 369 | inSlope: 0 370 | outSlope: 0 371 | tangentMode: 0 372 | weightedMode: 0 373 | inWeight: 0 374 | outWeight: 0 375 | - serializedVersion: 3 376 | time: 1 377 | value: 1 378 | inSlope: 0 379 | outSlope: 0 380 | tangentMode: 0 381 | weightedMode: 0 382 | inWeight: 0 383 | outWeight: 0 384 | m_PreInfinity: 2 385 | m_PostInfinity: 2 386 | m_RotationOrder: 4 387 | m_MixOutCurve: 388 | serializedVersion: 2 389 | m_Curve: 390 | - serializedVersion: 3 391 | time: 0 392 | value: 1 393 | inSlope: 0 394 | outSlope: 0 395 | tangentMode: 0 396 | weightedMode: 0 397 | inWeight: 0 398 | outWeight: 0 399 | - serializedVersion: 3 400 | time: 1 401 | value: 0 402 | inSlope: 0 403 | outSlope: 0 404 | tangentMode: 0 405 | weightedMode: 0 406 | inWeight: 0 407 | outWeight: 0 408 | m_PreInfinity: 2 409 | m_PostInfinity: 2 410 | m_RotationOrder: 4 411 | m_BlendInCurveMode: 0 412 | m_BlendOutCurveMode: 0 413 | m_ExposedParameterNames: [] 414 | m_AnimationCurves: {fileID: 0} 415 | m_Recordable: 0 416 | m_PostExtrapolationMode: 0 417 | m_PreExtrapolationMode: 0 418 | m_PostExtrapolationTime: 0 419 | m_PreExtrapolationTime: 0 420 | m_DisplayName: RecorderClip 421 | m_Markers: 422 | m_Objects: [] 423 | -------------------------------------------------------------------------------- /Assets/Outdoor/Timeline.playable.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c7440d26fa54c7bb8b9562d0ec524f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Particles.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c9935f014e36443f296f31bc4a68605f 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Particles/FlareBase.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 13 | m_Name: FlareBase 14 | m_EditorClassIdentifier: 15 | components: 16 | - {fileID: 7920604603748417209} 17 | - {fileID: 3136729780461382272} 18 | --- !u!114 &3136729780461382272 19 | MonoBehaviour: 20 | m_ObjectHideFlags: 3 21 | m_CorrespondingSourceObject: {fileID: 0} 22 | m_PrefabInstance: {fileID: 0} 23 | m_PrefabAsset: {fileID: 0} 24 | m_GameObject: {fileID: 0} 25 | m_Enabled: 1 26 | m_EditorHideFlags: 0 27 | m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} 28 | m_Name: Bloom 29 | m_EditorClassIdentifier: 30 | active: 1 31 | skipIterations: 32 | m_OverrideState: 0 33 | m_Value: 1 34 | threshold: 35 | m_OverrideState: 1 36 | m_Value: 0 37 | intensity: 38 | m_OverrideState: 1 39 | m_Value: 1 40 | scatter: 41 | m_OverrideState: 0 42 | m_Value: 0.7 43 | clamp: 44 | m_OverrideState: 0 45 | m_Value: 65472 46 | tint: 47 | m_OverrideState: 0 48 | m_Value: {r: 1, g: 1, b: 1, a: 1} 49 | highQualityFiltering: 50 | m_OverrideState: 0 51 | m_Value: 0 52 | downscale: 53 | m_OverrideState: 0 54 | m_Value: 0 55 | maxIterations: 56 | m_OverrideState: 0 57 | m_Value: 6 58 | dirtTexture: 59 | m_OverrideState: 0 60 | m_Value: {fileID: 0} 61 | dimension: 1 62 | dirtIntensity: 63 | m_OverrideState: 0 64 | m_Value: 0 65 | --- !u!114 &7920604603748417209 66 | MonoBehaviour: 67 | m_ObjectHideFlags: 3 68 | m_CorrespondingSourceObject: {fileID: 0} 69 | m_PrefabInstance: {fileID: 0} 70 | m_PrefabAsset: {fileID: 0} 71 | m_GameObject: {fileID: 0} 72 | m_Enabled: 1 73 | m_EditorHideFlags: 0 74 | m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3} 75 | m_Name: ScreenSpaceLensFlare 76 | m_EditorClassIdentifier: 77 | active: 1 78 | intensity: 79 | m_OverrideState: 1 80 | m_Value: 1 81 | tintColor: 82 | m_OverrideState: 0 83 | m_Value: {r: 1, g: 1, b: 1, a: 1} 84 | bloomMip: 85 | m_OverrideState: 0 86 | m_Value: 1 87 | firstFlareIntensity: 88 | m_OverrideState: 0 89 | m_Value: 1 90 | secondaryFlareIntensity: 91 | m_OverrideState: 0 92 | m_Value: 1 93 | warpedFlareIntensity: 94 | m_OverrideState: 0 95 | m_Value: 1 96 | warpedFlareScale: 97 | m_OverrideState: 0 98 | m_Value: {x: 1, y: 1} 99 | samples: 100 | m_OverrideState: 0 101 | m_Value: 1 102 | sampleDimmer: 103 | m_OverrideState: 0 104 | m_Value: 0.5 105 | vignetteEffect: 106 | m_OverrideState: 0 107 | m_Value: 1 108 | startingPosition: 109 | m_OverrideState: 0 110 | m_Value: 1.25 111 | scale: 112 | m_OverrideState: 0 113 | m_Value: 1.5 114 | streaksIntensity: 115 | m_OverrideState: 1 116 | m_Value: 0.15 117 | streaksLength: 118 | m_OverrideState: 1 119 | m_Value: 0.38 120 | streaksOrientation: 121 | m_OverrideState: 0 122 | m_Value: 0 123 | streaksThreshold: 124 | m_OverrideState: 0 125 | m_Value: 0.25 126 | resolution: 127 | m_OverrideState: 1 128 | m_Value: 2 129 | chromaticAbberationIntensity: 130 | m_OverrideState: 1 131 | m_Value: 0.6 132 | -------------------------------------------------------------------------------- /Assets/Particles/FlareBase.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 81b7d80793be54651bb6d207148fcd99 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Particles/FlareRotation.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-446379855865878735 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 3 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3} 13 | m_Name: ScreenSpaceLensFlare 14 | m_EditorClassIdentifier: 15 | active: 1 16 | intensity: 17 | m_OverrideState: 0 18 | m_Value: 0 19 | tintColor: 20 | m_OverrideState: 0 21 | m_Value: {r: 1, g: 1, b: 1, a: 1} 22 | bloomMip: 23 | m_OverrideState: 0 24 | m_Value: 1 25 | firstFlareIntensity: 26 | m_OverrideState: 0 27 | m_Value: 1 28 | secondaryFlareIntensity: 29 | m_OverrideState: 0 30 | m_Value: 1 31 | warpedFlareIntensity: 32 | m_OverrideState: 0 33 | m_Value: 1 34 | warpedFlareScale: 35 | m_OverrideState: 0 36 | m_Value: {x: 1, y: 1} 37 | samples: 38 | m_OverrideState: 0 39 | m_Value: 1 40 | sampleDimmer: 41 | m_OverrideState: 0 42 | m_Value: 0.5 43 | vignetteEffect: 44 | m_OverrideState: 0 45 | m_Value: 1 46 | startingPosition: 47 | m_OverrideState: 0 48 | m_Value: 1.25 49 | scale: 50 | m_OverrideState: 0 51 | m_Value: 1.5 52 | streaksIntensity: 53 | m_OverrideState: 0 54 | m_Value: 0 55 | streaksLength: 56 | m_OverrideState: 0 57 | m_Value: 0.5 58 | streaksOrientation: 59 | m_OverrideState: 1 60 | m_Value: -180 61 | streaksThreshold: 62 | m_OverrideState: 0 63 | m_Value: 0.25 64 | resolution: 65 | m_OverrideState: 0 66 | m_Value: 4 67 | chromaticAbberationIntensity: 68 | m_OverrideState: 0 69 | m_Value: 0.5 70 | --- !u!114 &11400000 71 | MonoBehaviour: 72 | m_ObjectHideFlags: 0 73 | m_CorrespondingSourceObject: {fileID: 0} 74 | m_PrefabInstance: {fileID: 0} 75 | m_PrefabAsset: {fileID: 0} 76 | m_GameObject: {fileID: 0} 77 | m_Enabled: 1 78 | m_EditorHideFlags: 0 79 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 80 | m_Name: FlareRotation 81 | m_EditorClassIdentifier: 82 | components: 83 | - {fileID: -446379855865878735} 84 | -------------------------------------------------------------------------------- /Assets/Particles/FlareRotation.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8f6ea21e253fc439aa11c328cbf3d045 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Particles/Particles.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d924e29543ef4c6d97353477b360999 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Particles/Particles.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ee2d38a43ee84f2bbb826ebeaad823f 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Particles/Postprocess.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-7500160819344550782 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 3 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} 13 | m_Name: Vignette 14 | m_EditorClassIdentifier: 15 | active: 1 16 | color: 17 | m_OverrideState: 0 18 | m_Value: {r: 0, g: 0, b: 0, a: 1} 19 | center: 20 | m_OverrideState: 0 21 | m_Value: {x: 0.5, y: 0.5} 22 | intensity: 23 | m_OverrideState: 1 24 | m_Value: 0.24 25 | smoothness: 26 | m_OverrideState: 1 27 | m_Value: 0.3 28 | rounded: 29 | m_OverrideState: 0 30 | m_Value: 0 31 | --- !u!114 &-4733891654715619188 32 | MonoBehaviour: 33 | m_ObjectHideFlags: 3 34 | m_CorrespondingSourceObject: {fileID: 0} 35 | m_PrefabInstance: {fileID: 0} 36 | m_PrefabAsset: {fileID: 0} 37 | m_GameObject: {fileID: 0} 38 | m_Enabled: 1 39 | m_EditorHideFlags: 0 40 | m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} 41 | m_Name: Tonemapping 42 | m_EditorClassIdentifier: 43 | active: 0 44 | mode: 45 | m_OverrideState: 1 46 | m_Value: 2 47 | neutralHDRRangeReductionMode: 48 | m_OverrideState: 0 49 | m_Value: 2 50 | acesPreset: 51 | m_OverrideState: 0 52 | m_Value: 3 53 | hueShiftAmount: 54 | m_OverrideState: 0 55 | m_Value: 0 56 | detectPaperWhite: 57 | m_OverrideState: 0 58 | m_Value: 0 59 | paperWhite: 60 | m_OverrideState: 0 61 | m_Value: 300 62 | detectBrightnessLimits: 63 | m_OverrideState: 0 64 | m_Value: 1 65 | minNits: 66 | m_OverrideState: 0 67 | m_Value: 0.005 68 | maxNits: 69 | m_OverrideState: 0 70 | m_Value: 1000 71 | --- !u!114 &-780604400664481272 72 | MonoBehaviour: 73 | m_ObjectHideFlags: 3 74 | m_CorrespondingSourceObject: {fileID: 0} 75 | m_PrefabInstance: {fileID: 0} 76 | m_PrefabAsset: {fileID: 0} 77 | m_GameObject: {fileID: 0} 78 | m_Enabled: 1 79 | m_EditorHideFlags: 0 80 | m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3} 81 | m_Name: FilmGrain 82 | m_EditorClassIdentifier: 83 | active: 1 84 | type: 85 | m_OverrideState: 0 86 | m_Value: 0 87 | intensity: 88 | m_OverrideState: 1 89 | m_Value: 0.5 90 | response: 91 | m_OverrideState: 0 92 | m_Value: 0.8 93 | texture: 94 | m_OverrideState: 0 95 | m_Value: {fileID: 0} 96 | --- !u!114 &11400000 97 | MonoBehaviour: 98 | m_ObjectHideFlags: 0 99 | m_CorrespondingSourceObject: {fileID: 0} 100 | m_PrefabInstance: {fileID: 0} 101 | m_PrefabAsset: {fileID: 0} 102 | m_GameObject: {fileID: 0} 103 | m_Enabled: 1 104 | m_EditorHideFlags: 0 105 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 106 | m_Name: Postprocess 107 | m_EditorClassIdentifier: 108 | components: 109 | - {fileID: -4733891654715619188} 110 | - {fileID: -7500160819344550782} 111 | - {fileID: -780604400664481272} 112 | -------------------------------------------------------------------------------- /Assets/Particles/Postprocess.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d42cb63428264922980a08837e7fdf6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Particles/Timeline.playable: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: bfda56da833e2384a9677cd3c976a436, type: 3} 13 | m_Name: Timeline 14 | m_EditorClassIdentifier: 15 | m_Version: 0 16 | m_Tracks: 17 | - {fileID: 4913678425534364709} 18 | m_FixedDuration: 0 19 | m_EditorSettings: 20 | m_Framerate: 60 21 | m_ScenePreview: 1 22 | m_DurationMode: 0 23 | m_MarkerTrack: {fileID: 0} 24 | --- !u!114 &4913678425534364709 25 | MonoBehaviour: 26 | m_ObjectHideFlags: 1 27 | m_CorrespondingSourceObject: {fileID: 0} 28 | m_PrefabInstance: {fileID: 0} 29 | m_PrefabAsset: {fileID: 0} 30 | m_GameObject: {fileID: 0} 31 | m_Enabled: 1 32 | m_EditorHideFlags: 0 33 | m_Script: {fileID: 11500000, guid: d21dcc2386d650c4597f3633c75a1f98, type: 3} 34 | m_Name: Animation Track 35 | m_EditorClassIdentifier: 36 | m_Version: 3 37 | m_AnimClip: {fileID: 0} 38 | m_Locked: 0 39 | m_Muted: 0 40 | m_CustomPlayableFullTypename: 41 | m_Curves: {fileID: 0} 42 | m_Parent: {fileID: 11400000} 43 | m_Children: [] 44 | m_Clips: [] 45 | m_Markers: 46 | m_Objects: [] 47 | m_InfiniteClipPreExtrapolation: 1 48 | m_InfiniteClipPostExtrapolation: 1 49 | m_InfiniteClipOffsetPosition: {x: 0, y: 0, z: 0} 50 | m_InfiniteClipOffsetEulerAngles: {x: 0, y: 0, z: 0} 51 | m_InfiniteClipTimeOffset: 0 52 | m_InfiniteClipRemoveOffset: 0 53 | m_InfiniteClipApplyFootIK: 1 54 | mInfiniteClipLoop: 0 55 | m_MatchTargetFields: 63 56 | m_Position: {x: 0, y: 0, z: 0} 57 | m_EulerAngles: {x: 0, y: 0, z: 0} 58 | m_AvatarMask: {fileID: 0} 59 | m_ApplyAvatarMask: 1 60 | m_TrackOffset: 0 61 | m_InfiniteClip: {fileID: 6627147848873949641} 62 | m_OpenClipOffsetRotation: {x: 0, y: 0, z: 0, w: 1} 63 | m_Rotation: {x: 0, y: 0, z: 0, w: 1} 64 | m_ApplyOffsets: 0 65 | --- !u!74 &6627147848873949641 66 | AnimationClip: 67 | m_ObjectHideFlags: 0 68 | m_CorrespondingSourceObject: {fileID: 0} 69 | m_PrefabInstance: {fileID: 0} 70 | m_PrefabAsset: {fileID: 0} 71 | m_Name: Recorded 72 | serializedVersion: 7 73 | m_Legacy: 0 74 | m_Compressed: 0 75 | m_UseHighQualityCurve: 1 76 | m_RotationCurves: [] 77 | m_CompressedRotationCurves: [] 78 | m_EulerCurves: [] 79 | m_PositionCurves: [] 80 | m_ScaleCurves: [] 81 | m_FloatCurves: 82 | - serializedVersion: 2 83 | curve: 84 | serializedVersion: 2 85 | m_Curve: 86 | - serializedVersion: 3 87 | time: 0 88 | value: 0 89 | inSlope: 0 90 | outSlope: 0.1 91 | tangentMode: 69 92 | weightedMode: 0 93 | inWeight: 0.33333334 94 | outWeight: 0.33333334 95 | - serializedVersion: 3 96 | time: 10 97 | value: 1 98 | inSlope: 0.1 99 | outSlope: 0 100 | tangentMode: 69 101 | weightedMode: 0 102 | inWeight: 0.33333334 103 | outWeight: 0.33333334 104 | m_PreInfinity: 2 105 | m_PostInfinity: 2 106 | m_RotationOrder: 4 107 | attribute: weight 108 | path: 109 | classID: 114 110 | script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} 111 | flags: 0 112 | m_PPtrCurves: [] 113 | m_SampleRate: 60 114 | m_WrapMode: 0 115 | m_Bounds: 116 | m_Center: {x: 0, y: 0, z: 0} 117 | m_Extent: {x: 0, y: 0, z: 0} 118 | m_ClipBindingConstant: 119 | genericBindings: 120 | - serializedVersion: 2 121 | path: 0 122 | attribute: 130897217 123 | script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} 124 | typeID: 114 125 | customType: 0 126 | isPPtrCurve: 0 127 | isIntCurve: 0 128 | isSerializeReferenceCurve: 0 129 | pptrCurveMapping: [] 130 | m_AnimationClipSettings: 131 | serializedVersion: 2 132 | m_AdditiveReferencePoseClip: {fileID: 0} 133 | m_AdditiveReferencePoseTime: 0 134 | m_StartTime: 0 135 | m_StopTime: 10 136 | m_OrientationOffsetY: 0 137 | m_Level: 0 138 | m_CycleOffset: 0 139 | m_HasAdditiveReferencePose: 0 140 | m_LoopTime: 0 141 | m_LoopBlend: 0 142 | m_LoopBlendOrientation: 0 143 | m_LoopBlendPositionY: 0 144 | m_LoopBlendPositionXZ: 0 145 | m_KeepOriginalOrientation: 0 146 | m_KeepOriginalPositionY: 1 147 | m_KeepOriginalPositionXZ: 0 148 | m_HeightFromFeet: 0 149 | m_Mirror: 0 150 | m_EditorCurves: 151 | - serializedVersion: 2 152 | curve: 153 | serializedVersion: 2 154 | m_Curve: 155 | - serializedVersion: 3 156 | time: 0 157 | value: 0 158 | inSlope: 0 159 | outSlope: 0.1 160 | tangentMode: 69 161 | weightedMode: 0 162 | inWeight: 0.33333334 163 | outWeight: 0.33333334 164 | - serializedVersion: 3 165 | time: 10 166 | value: 1 167 | inSlope: 0.1 168 | outSlope: 0 169 | tangentMode: 69 170 | weightedMode: 0 171 | inWeight: 0.33333334 172 | outWeight: 0.33333334 173 | m_PreInfinity: 2 174 | m_PostInfinity: 2 175 | m_RotationOrder: 4 176 | attribute: weight 177 | path: 178 | classID: 114 179 | script: {fileID: 11500000, guid: 172515602e62fb746b5d573b38a5fe58, type: 3} 180 | flags: 0 181 | m_EulerEditorCurves: [] 182 | m_HasGenericRootTransform: 0 183 | m_HasMotionFloatCurves: 0 184 | m_Events: [] 185 | -------------------------------------------------------------------------------- /Assets/Particles/Timeline.playable.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d17ee318c4734af6a9d65afe0cc98d0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Reflections.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 591cd633bb9d34881ab24233f951cc6b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Reflections/Flare.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 13 | m_Name: Flare 14 | m_EditorClassIdentifier: 15 | components: 16 | - {fileID: 7920604603748417209} 17 | - {fileID: 3136729780461382272} 18 | --- !u!114 &3136729780461382272 19 | MonoBehaviour: 20 | m_ObjectHideFlags: 3 21 | m_CorrespondingSourceObject: {fileID: 0} 22 | m_PrefabInstance: {fileID: 0} 23 | m_PrefabAsset: {fileID: 0} 24 | m_GameObject: {fileID: 0} 25 | m_Enabled: 1 26 | m_EditorHideFlags: 0 27 | m_Script: {fileID: 11500000, guid: 0b2db86121404754db890f4c8dfe81b2, type: 3} 28 | m_Name: Bloom 29 | m_EditorClassIdentifier: 30 | active: 1 31 | skipIterations: 32 | m_OverrideState: 0 33 | m_Value: 1 34 | threshold: 35 | m_OverrideState: 1 36 | m_Value: 0 37 | intensity: 38 | m_OverrideState: 1 39 | m_Value: 1 40 | scatter: 41 | m_OverrideState: 0 42 | m_Value: 0.7 43 | clamp: 44 | m_OverrideState: 0 45 | m_Value: 65472 46 | tint: 47 | m_OverrideState: 0 48 | m_Value: {r: 1, g: 1, b: 1, a: 1} 49 | highQualityFiltering: 50 | m_OverrideState: 1 51 | m_Value: 1 52 | downscale: 53 | m_OverrideState: 0 54 | m_Value: 0 55 | maxIterations: 56 | m_OverrideState: 0 57 | m_Value: 6 58 | dirtTexture: 59 | m_OverrideState: 0 60 | m_Value: {fileID: 0} 61 | dimension: 1 62 | dirtIntensity: 63 | m_OverrideState: 0 64 | m_Value: 0 65 | --- !u!114 &7920604603748417209 66 | MonoBehaviour: 67 | m_ObjectHideFlags: 3 68 | m_CorrespondingSourceObject: {fileID: 0} 69 | m_PrefabInstance: {fileID: 0} 70 | m_PrefabAsset: {fileID: 0} 71 | m_GameObject: {fileID: 0} 72 | m_Enabled: 1 73 | m_EditorHideFlags: 0 74 | m_Script: {fileID: 11500000, guid: 06437c1ff663d574d9447842ba0a72e4, type: 3} 75 | m_Name: ScreenSpaceLensFlare 76 | m_EditorClassIdentifier: 77 | active: 1 78 | intensity: 79 | m_OverrideState: 1 80 | m_Value: 1 81 | tintColor: 82 | m_OverrideState: 0 83 | m_Value: {r: 1, g: 1, b: 1, a: 1} 84 | bloomMip: 85 | m_OverrideState: 0 86 | m_Value: 1 87 | firstFlareIntensity: 88 | m_OverrideState: 0 89 | m_Value: 1 90 | secondaryFlareIntensity: 91 | m_OverrideState: 0 92 | m_Value: 1 93 | warpedFlareIntensity: 94 | m_OverrideState: 0 95 | m_Value: 1 96 | warpedFlareScale: 97 | m_OverrideState: 0 98 | m_Value: {x: 1, y: 1} 99 | samples: 100 | m_OverrideState: 1 101 | m_Value: 3 102 | sampleDimmer: 103 | m_OverrideState: 0 104 | m_Value: 0.5 105 | vignetteEffect: 106 | m_OverrideState: 0 107 | m_Value: 1 108 | startingPosition: 109 | m_OverrideState: 0 110 | m_Value: 1.2 111 | scale: 112 | m_OverrideState: 0 113 | m_Value: 1.5 114 | streaksIntensity: 115 | m_OverrideState: 1 116 | m_Value: 0.2 117 | streaksLength: 118 | m_OverrideState: 1 119 | m_Value: 0.6 120 | streaksOrientation: 121 | m_OverrideState: 0 122 | m_Value: 0 123 | streaksThreshold: 124 | m_OverrideState: 0 125 | m_Value: 0.25 126 | resolution: 127 | m_OverrideState: 1 128 | m_Value: 2 129 | chromaticAbberationIntensity: 130 | m_OverrideState: 1 131 | m_Value: 0.6 132 | -------------------------------------------------------------------------------- /Assets/Reflections/Flare.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e59e512c54a2b4861876e8cd2fb5a250 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Reflections/Floor.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 8 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Floor 11 | m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} 12 | m_Parent: {fileID: 0} 13 | m_ModifiedSerializedProperties: 0 14 | m_ValidKeywords: [] 15 | m_InvalidKeywords: [] 16 | m_LightmapFlags: 4 17 | m_EnableInstancingVariants: 0 18 | m_DoubleSidedGI: 0 19 | m_CustomRenderQueue: -1 20 | stringTagMap: 21 | RenderType: Opaque 22 | disabledShaderPasses: 23 | - MOTIONVECTORS 24 | m_LockedProperties: 25 | m_SavedProperties: 26 | serializedVersion: 3 27 | m_TexEnvs: 28 | - _BaseMap: 29 | m_Texture: {fileID: 7506314328700112305, guid: 24720d25ad47749beb4b8e15a7c8bac6, type: 3} 30 | m_Scale: {x: 20, y: 20} 31 | m_Offset: {x: 0, y: 0} 32 | - _BumpMap: 33 | m_Texture: {fileID: 0} 34 | m_Scale: {x: 1, y: 1} 35 | m_Offset: {x: 0, y: 0} 36 | - _DetailAlbedoMap: 37 | m_Texture: {fileID: 0} 38 | m_Scale: {x: 1, y: 1} 39 | m_Offset: {x: 0, y: 0} 40 | - _DetailMask: 41 | m_Texture: {fileID: 0} 42 | m_Scale: {x: 1, y: 1} 43 | m_Offset: {x: 0, y: 0} 44 | - _DetailNormalMap: 45 | m_Texture: {fileID: 0} 46 | m_Scale: {x: 1, y: 1} 47 | m_Offset: {x: 0, y: 0} 48 | - _EmissionMap: 49 | m_Texture: {fileID: 0} 50 | m_Scale: {x: 1, y: 1} 51 | m_Offset: {x: 0, y: 0} 52 | - _MainTex: 53 | m_Texture: {fileID: 7506314328700112305, guid: 24720d25ad47749beb4b8e15a7c8bac6, type: 3} 54 | m_Scale: {x: 20, y: 20} 55 | m_Offset: {x: 0, y: 0} 56 | - _MetallicGlossMap: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | - _OcclusionMap: 61 | m_Texture: {fileID: 0} 62 | m_Scale: {x: 1, y: 1} 63 | m_Offset: {x: 0, y: 0} 64 | - _ParallaxMap: 65 | m_Texture: {fileID: 0} 66 | m_Scale: {x: 1, y: 1} 67 | m_Offset: {x: 0, y: 0} 68 | - _SpecGlossMap: 69 | m_Texture: {fileID: 0} 70 | m_Scale: {x: 1, y: 1} 71 | m_Offset: {x: 0, y: 0} 72 | - unity_Lightmaps: 73 | m_Texture: {fileID: 0} 74 | m_Scale: {x: 1, y: 1} 75 | m_Offset: {x: 0, y: 0} 76 | - unity_LightmapsInd: 77 | m_Texture: {fileID: 0} 78 | m_Scale: {x: 1, y: 1} 79 | m_Offset: {x: 0, y: 0} 80 | - unity_ShadowMasks: 81 | m_Texture: {fileID: 0} 82 | m_Scale: {x: 1, y: 1} 83 | m_Offset: {x: 0, y: 0} 84 | m_Ints: [] 85 | m_Floats: 86 | - _AlphaClip: 0 87 | - _AlphaToMask: 0 88 | - _Blend: 0 89 | - _BlendModePreserveSpecular: 1 90 | - _BumpScale: 1 91 | - _ClearCoatMask: 0 92 | - _ClearCoatSmoothness: 0 93 | - _Cull: 2 94 | - _Cutoff: 0.5 95 | - _DetailAlbedoMapScale: 1 96 | - _DetailNormalMapScale: 1 97 | - _DstBlend: 0 98 | - _DstBlendAlpha: 0 99 | - _EnvironmentReflections: 1 100 | - _GlossMapScale: 0 101 | - _Glossiness: 0 102 | - _GlossyReflections: 0 103 | - _Metallic: 0.7 104 | - _OcclusionStrength: 1 105 | - _Parallax: 0.005 106 | - _QueueOffset: 0 107 | - _ReceiveShadows: 1 108 | - _Smoothness: 0.8 109 | - _SmoothnessTextureChannel: 0 110 | - _SpecularHighlights: 1 111 | - _SrcBlend: 1 112 | - _SrcBlendAlpha: 1 113 | - _Surface: 0 114 | - _WorkflowMode: 1 115 | - _ZWrite: 1 116 | m_Colors: 117 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 118 | - _Color: {r: 1, g: 1, b: 1, a: 1} 119 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 120 | - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} 121 | m_BuildTextureStacks: [] 122 | m_AllowLocking: 1 123 | --- !u!114 &5642884902193158398 124 | MonoBehaviour: 125 | m_ObjectHideFlags: 11 126 | m_CorrespondingSourceObject: {fileID: 0} 127 | m_PrefabInstance: {fileID: 0} 128 | m_PrefabAsset: {fileID: 0} 129 | m_GameObject: {fileID: 0} 130 | m_Enabled: 1 131 | m_EditorHideFlags: 0 132 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 133 | m_Name: 134 | m_EditorClassIdentifier: 135 | version: 9 136 | -------------------------------------------------------------------------------- /Assets/Reflections/Floor.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 240cecdbb0011448b98ce279b99e996c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Reflections/Postprocess.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-7500160819344550782 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 3 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3} 13 | m_Name: Vignette 14 | m_EditorClassIdentifier: 15 | active: 1 16 | color: 17 | m_OverrideState: 0 18 | m_Value: {r: 0, g: 0, b: 0, a: 1} 19 | center: 20 | m_OverrideState: 0 21 | m_Value: {x: 0.5, y: 0.5} 22 | intensity: 23 | m_OverrideState: 1 24 | m_Value: 0.24 25 | smoothness: 26 | m_OverrideState: 1 27 | m_Value: 0.3 28 | rounded: 29 | m_OverrideState: 0 30 | m_Value: 0 31 | --- !u!114 &-4733891654715619188 32 | MonoBehaviour: 33 | m_ObjectHideFlags: 3 34 | m_CorrespondingSourceObject: {fileID: 0} 35 | m_PrefabInstance: {fileID: 0} 36 | m_PrefabAsset: {fileID: 0} 37 | m_GameObject: {fileID: 0} 38 | m_Enabled: 1 39 | m_EditorHideFlags: 0 40 | m_Script: {fileID: 11500000, guid: 97c23e3b12dc18c42a140437e53d3951, type: 3} 41 | m_Name: Tonemapping 42 | m_EditorClassIdentifier: 43 | active: 1 44 | mode: 45 | m_OverrideState: 1 46 | m_Value: 2 47 | neutralHDRRangeReductionMode: 48 | m_OverrideState: 0 49 | m_Value: 2 50 | acesPreset: 51 | m_OverrideState: 0 52 | m_Value: 3 53 | hueShiftAmount: 54 | m_OverrideState: 0 55 | m_Value: 0 56 | detectPaperWhite: 57 | m_OverrideState: 0 58 | m_Value: 0 59 | paperWhite: 60 | m_OverrideState: 0 61 | m_Value: 300 62 | detectBrightnessLimits: 63 | m_OverrideState: 0 64 | m_Value: 1 65 | minNits: 66 | m_OverrideState: 0 67 | m_Value: 0.005 68 | maxNits: 69 | m_OverrideState: 0 70 | m_Value: 1000 71 | --- !u!114 &-780604400664481272 72 | MonoBehaviour: 73 | m_ObjectHideFlags: 3 74 | m_CorrespondingSourceObject: {fileID: 0} 75 | m_PrefabInstance: {fileID: 0} 76 | m_PrefabAsset: {fileID: 0} 77 | m_GameObject: {fileID: 0} 78 | m_Enabled: 1 79 | m_EditorHideFlags: 0 80 | m_Script: {fileID: 11500000, guid: 29fa0085f50d5e54f8144f766051a691, type: 3} 81 | m_Name: FilmGrain 82 | m_EditorClassIdentifier: 83 | active: 1 84 | type: 85 | m_OverrideState: 0 86 | m_Value: 0 87 | intensity: 88 | m_OverrideState: 1 89 | m_Value: 0.5 90 | response: 91 | m_OverrideState: 0 92 | m_Value: 0.8 93 | texture: 94 | m_OverrideState: 0 95 | m_Value: {fileID: 0} 96 | --- !u!114 &11400000 97 | MonoBehaviour: 98 | m_ObjectHideFlags: 0 99 | m_CorrespondingSourceObject: {fileID: 0} 100 | m_PrefabInstance: {fileID: 0} 101 | m_PrefabAsset: {fileID: 0} 102 | m_GameObject: {fileID: 0} 103 | m_Enabled: 1 104 | m_EditorHideFlags: 0 105 | m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3} 106 | m_Name: Postprocess 107 | m_EditorClassIdentifier: 108 | components: 109 | - {fileID: -4733891654715619188} 110 | - {fileID: -7500160819344550782} 111 | - {fileID: -780604400664481272} 112 | -------------------------------------------------------------------------------- /Assets/Reflections/Postprocess.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21878c9b72788497a86d15f95e59986d 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Reflections/Reflections.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38ff0c4f811bb476981ae865d506d634 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Reflections/Sphere.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-804426992635815496 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 9 16 | --- !u!21 &2100000 17 | Material: 18 | serializedVersion: 8 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_Name: Sphere 24 | m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} 25 | m_Parent: {fileID: 0} 26 | m_ModifiedSerializedProperties: 0 27 | m_ValidKeywords: [] 28 | m_InvalidKeywords: [] 29 | m_LightmapFlags: 4 30 | m_EnableInstancingVariants: 0 31 | m_DoubleSidedGI: 0 32 | m_CustomRenderQueue: -1 33 | stringTagMap: 34 | RenderType: Opaque 35 | disabledShaderPasses: 36 | - MOTIONVECTORS 37 | m_LockedProperties: 38 | m_SavedProperties: 39 | serializedVersion: 3 40 | m_TexEnvs: 41 | - _BaseMap: 42 | m_Texture: {fileID: 0} 43 | m_Scale: {x: 1, y: 1} 44 | m_Offset: {x: 0, y: 0} 45 | - _BumpMap: 46 | m_Texture: {fileID: 0} 47 | m_Scale: {x: 1, y: 1} 48 | m_Offset: {x: 0, y: 0} 49 | - _DetailAlbedoMap: 50 | m_Texture: {fileID: 0} 51 | m_Scale: {x: 1, y: 1} 52 | m_Offset: {x: 0, y: 0} 53 | - _DetailMask: 54 | m_Texture: {fileID: 0} 55 | m_Scale: {x: 1, y: 1} 56 | m_Offset: {x: 0, y: 0} 57 | - _DetailNormalMap: 58 | m_Texture: {fileID: 0} 59 | m_Scale: {x: 1, y: 1} 60 | m_Offset: {x: 0, y: 0} 61 | - _EmissionMap: 62 | m_Texture: {fileID: 0} 63 | m_Scale: {x: 1, y: 1} 64 | m_Offset: {x: 0, y: 0} 65 | - _MainTex: 66 | m_Texture: {fileID: 0} 67 | m_Scale: {x: 1, y: 1} 68 | m_Offset: {x: 0, y: 0} 69 | - _MetallicGlossMap: 70 | m_Texture: {fileID: 0} 71 | m_Scale: {x: 1, y: 1} 72 | m_Offset: {x: 0, y: 0} 73 | - _OcclusionMap: 74 | m_Texture: {fileID: 0} 75 | m_Scale: {x: 1, y: 1} 76 | m_Offset: {x: 0, y: 0} 77 | - _ParallaxMap: 78 | m_Texture: {fileID: 0} 79 | m_Scale: {x: 1, y: 1} 80 | m_Offset: {x: 0, y: 0} 81 | - _SpecGlossMap: 82 | m_Texture: {fileID: 0} 83 | m_Scale: {x: 1, y: 1} 84 | m_Offset: {x: 0, y: 0} 85 | - unity_Lightmaps: 86 | m_Texture: {fileID: 0} 87 | m_Scale: {x: 1, y: 1} 88 | m_Offset: {x: 0, y: 0} 89 | - unity_LightmapsInd: 90 | m_Texture: {fileID: 0} 91 | m_Scale: {x: 1, y: 1} 92 | m_Offset: {x: 0, y: 0} 93 | - unity_ShadowMasks: 94 | m_Texture: {fileID: 0} 95 | m_Scale: {x: 1, y: 1} 96 | m_Offset: {x: 0, y: 0} 97 | m_Ints: [] 98 | m_Floats: 99 | - _AlphaClip: 0 100 | - _AlphaToMask: 0 101 | - _Blend: 0 102 | - _BlendModePreserveSpecular: 1 103 | - _BumpScale: 1 104 | - _ClearCoatMask: 0 105 | - _ClearCoatSmoothness: 0 106 | - _Cull: 2 107 | - _Cutoff: 0.5 108 | - _DetailAlbedoMapScale: 1 109 | - _DetailNormalMapScale: 1 110 | - _DstBlend: 0 111 | - _DstBlendAlpha: 0 112 | - _EnvironmentReflections: 1 113 | - _GlossMapScale: 0 114 | - _Glossiness: 0 115 | - _GlossyReflections: 0 116 | - _Metallic: 1 117 | - _OcclusionStrength: 1 118 | - _Parallax: 0.005 119 | - _QueueOffset: 0 120 | - _ReceiveShadows: 1 121 | - _Smoothness: 0.85 122 | - _SmoothnessTextureChannel: 0 123 | - _SpecularHighlights: 1 124 | - _SrcBlend: 1 125 | - _SrcBlendAlpha: 1 126 | - _Surface: 0 127 | - _WorkflowMode: 1 128 | - _ZWrite: 1 129 | m_Colors: 130 | - _BaseColor: {r: 0.5849056, g: 0.5849056, b: 0.5849056, a: 1} 131 | - _Color: {r: 0.5849056, g: 0.5849056, b: 0.5849056, a: 1} 132 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 133 | - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} 134 | m_BuildTextureStacks: [] 135 | m_AllowLocking: 1 136 | -------------------------------------------------------------------------------- /Assets/Reflections/Sphere.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69969529ede874b01aeda2f99f82fad4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.render-pipelines.universal": "17.0.3", 4 | "com.unity.timeline": "1.8.7", 5 | "com.unity.visualeffectgraph": "17.0.3", 6 | "com.unity.cloud.gltfast": "6.10.1", 7 | "jp.keijiro.klak.motion": "1.1.0", 8 | "jp.keijiro.metamesh": "1.2.0", 9 | "jp.keijiro.metatex": "1.0.4", 10 | "jp.keijiro.vfxgraphassets": "3.8.0", 11 | "com.unity.modules.imageconversion": "1.0.0" 12 | }, 13 | "scopedRegistries": [ 14 | { 15 | "name": "Keijiro", 16 | "url": "https://registry.npmjs.com", 17 | "scopes": [ 18 | "jp.keijiro" 19 | ] 20 | } 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.burst": { 4 | "version": "1.8.18", 5 | "depth": 1, 6 | "source": "registry", 7 | "dependencies": { 8 | "com.unity.mathematics": "1.2.1", 9 | "com.unity.modules.jsonserialize": "1.0.0" 10 | }, 11 | "url": "https://packages.unity.com" 12 | }, 13 | "com.unity.cloud.gltfast": { 14 | "version": "6.10.1", 15 | "depth": 0, 16 | "source": "registry", 17 | "dependencies": { 18 | "com.unity.burst": "1.8.4", 19 | "com.unity.collections": "1.2.4", 20 | "com.unity.mathematics": "1.2.6", 21 | "com.unity.modules.jsonserialize": "1.0.0", 22 | "com.unity.modules.unitywebrequest": "1.0.0" 23 | }, 24 | "url": "https://packages.unity.com" 25 | }, 26 | "com.unity.collections": { 27 | "version": "2.5.1", 28 | "depth": 1, 29 | "source": "registry", 30 | "dependencies": { 31 | "com.unity.burst": "1.8.17", 32 | "com.unity.test-framework": "1.4.5", 33 | "com.unity.nuget.mono-cecil": "1.11.4", 34 | "com.unity.test-framework.performance": "3.0.3" 35 | }, 36 | "url": "https://packages.unity.com" 37 | }, 38 | "com.unity.ext.nunit": { 39 | "version": "2.0.5", 40 | "depth": 3, 41 | "source": "registry", 42 | "dependencies": {}, 43 | "url": "https://packages.unity.com" 44 | }, 45 | "com.unity.mathematics": { 46 | "version": "1.3.2", 47 | "depth": 1, 48 | "source": "registry", 49 | "dependencies": {}, 50 | "url": "https://packages.unity.com" 51 | }, 52 | "com.unity.nuget.mono-cecil": { 53 | "version": "1.11.4", 54 | "depth": 2, 55 | "source": "registry", 56 | "dependencies": {}, 57 | "url": "https://packages.unity.com" 58 | }, 59 | "com.unity.render-pipelines.core": { 60 | "version": "17.0.3", 61 | "depth": 1, 62 | "source": "builtin", 63 | "dependencies": { 64 | "com.unity.burst": "1.8.14", 65 | "com.unity.mathematics": "1.3.2", 66 | "com.unity.ugui": "2.0.0", 67 | "com.unity.collections": "2.4.3", 68 | "com.unity.modules.physics": "1.0.0", 69 | "com.unity.modules.terrain": "1.0.0", 70 | "com.unity.modules.jsonserialize": "1.0.0", 71 | "com.unity.rendering.light-transport": "1.0.1" 72 | } 73 | }, 74 | "com.unity.render-pipelines.universal": { 75 | "version": "17.0.3", 76 | "depth": 0, 77 | "source": "builtin", 78 | "dependencies": { 79 | "com.unity.render-pipelines.core": "17.0.3", 80 | "com.unity.shadergraph": "17.0.3", 81 | "com.unity.render-pipelines.universal-config": "17.0.3" 82 | } 83 | }, 84 | "com.unity.render-pipelines.universal-config": { 85 | "version": "17.0.3", 86 | "depth": 1, 87 | "source": "builtin", 88 | "dependencies": { 89 | "com.unity.render-pipelines.core": "17.0.3" 90 | } 91 | }, 92 | "com.unity.rendering.light-transport": { 93 | "version": "1.0.1", 94 | "depth": 2, 95 | "source": "builtin", 96 | "dependencies": { 97 | "com.unity.collections": "2.2.0", 98 | "com.unity.mathematics": "1.2.4", 99 | "com.unity.modules.terrain": "1.0.0" 100 | } 101 | }, 102 | "com.unity.searcher": { 103 | "version": "4.9.2", 104 | "depth": 2, 105 | "source": "registry", 106 | "dependencies": {}, 107 | "url": "https://packages.unity.com" 108 | }, 109 | "com.unity.shadergraph": { 110 | "version": "17.0.3", 111 | "depth": 1, 112 | "source": "builtin", 113 | "dependencies": { 114 | "com.unity.render-pipelines.core": "17.0.3", 115 | "com.unity.searcher": "4.9.2" 116 | } 117 | }, 118 | "com.unity.test-framework": { 119 | "version": "1.4.5", 120 | "depth": 2, 121 | "source": "registry", 122 | "dependencies": { 123 | "com.unity.ext.nunit": "2.0.3", 124 | "com.unity.modules.imgui": "1.0.0", 125 | "com.unity.modules.jsonserialize": "1.0.0" 126 | }, 127 | "url": "https://packages.unity.com" 128 | }, 129 | "com.unity.test-framework.performance": { 130 | "version": "3.0.3", 131 | "depth": 2, 132 | "source": "registry", 133 | "dependencies": { 134 | "com.unity.test-framework": "1.1.31", 135 | "com.unity.modules.jsonserialize": "1.0.0" 136 | }, 137 | "url": "https://packages.unity.com" 138 | }, 139 | "com.unity.timeline": { 140 | "version": "1.8.7", 141 | "depth": 0, 142 | "source": "registry", 143 | "dependencies": { 144 | "com.unity.modules.audio": "1.0.0", 145 | "com.unity.modules.director": "1.0.0", 146 | "com.unity.modules.animation": "1.0.0", 147 | "com.unity.modules.particlesystem": "1.0.0" 148 | }, 149 | "url": "https://packages.unity.com" 150 | }, 151 | "com.unity.ugui": { 152 | "version": "2.0.0", 153 | "depth": 2, 154 | "source": "builtin", 155 | "dependencies": { 156 | "com.unity.modules.ui": "1.0.0", 157 | "com.unity.modules.imgui": "1.0.0" 158 | } 159 | }, 160 | "com.unity.visualeffectgraph": { 161 | "version": "17.0.3", 162 | "depth": 0, 163 | "source": "builtin", 164 | "dependencies": { 165 | "com.unity.shadergraph": "17.0.3", 166 | "com.unity.render-pipelines.core": "17.0.3" 167 | } 168 | }, 169 | "jp.keijiro.klak.lineargradient": { 170 | "version": "1.0.2", 171 | "depth": 1, 172 | "source": "registry", 173 | "dependencies": {}, 174 | "url": "https://registry.npmjs.com" 175 | }, 176 | "jp.keijiro.klak.motion": { 177 | "version": "1.1.0", 178 | "depth": 0, 179 | "source": "registry", 180 | "dependencies": { 181 | "com.unity.mathematics": "1.2.1" 182 | }, 183 | "url": "https://registry.npmjs.com" 184 | }, 185 | "jp.keijiro.metamesh": { 186 | "version": "1.2.0", 187 | "depth": 0, 188 | "source": "registry", 189 | "dependencies": { 190 | "com.unity.mathematics": "1.2.1" 191 | }, 192 | "url": "https://registry.npmjs.com" 193 | }, 194 | "jp.keijiro.metatex": { 195 | "version": "1.0.4", 196 | "depth": 0, 197 | "source": "registry", 198 | "dependencies": { 199 | "jp.keijiro.klak.lineargradient": "1.0.2" 200 | }, 201 | "url": "https://registry.npmjs.com" 202 | }, 203 | "jp.keijiro.noiseshader": { 204 | "version": "2.0.0", 205 | "depth": 2, 206 | "source": "registry", 207 | "dependencies": {}, 208 | "url": "https://registry.npmjs.com" 209 | }, 210 | "jp.keijiro.shadergraphassets": { 211 | "version": "2.5.2", 212 | "depth": 1, 213 | "source": "registry", 214 | "dependencies": { 215 | "com.unity.shadergraph": "12.1.0", 216 | "jp.keijiro.noiseshader": "2.0.0" 217 | }, 218 | "url": "https://registry.npmjs.com" 219 | }, 220 | "jp.keijiro.vfxgraphassets": { 221 | "version": "3.8.0", 222 | "depth": 0, 223 | "source": "registry", 224 | "dependencies": { 225 | "com.unity.visualeffectgraph": "17.0.0", 226 | "jp.keijiro.shadergraphassets": "2.5.2" 227 | }, 228 | "url": "https://registry.npmjs.com" 229 | }, 230 | "com.unity.modules.animation": { 231 | "version": "1.0.0", 232 | "depth": 1, 233 | "source": "builtin", 234 | "dependencies": {} 235 | }, 236 | "com.unity.modules.audio": { 237 | "version": "1.0.0", 238 | "depth": 1, 239 | "source": "builtin", 240 | "dependencies": {} 241 | }, 242 | "com.unity.modules.director": { 243 | "version": "1.0.0", 244 | "depth": 1, 245 | "source": "builtin", 246 | "dependencies": { 247 | "com.unity.modules.audio": "1.0.0", 248 | "com.unity.modules.animation": "1.0.0" 249 | } 250 | }, 251 | "com.unity.modules.imageconversion": { 252 | "version": "1.0.0", 253 | "depth": 0, 254 | "source": "builtin", 255 | "dependencies": {} 256 | }, 257 | "com.unity.modules.imgui": { 258 | "version": "1.0.0", 259 | "depth": 3, 260 | "source": "builtin", 261 | "dependencies": {} 262 | }, 263 | "com.unity.modules.jsonserialize": { 264 | "version": "1.0.0", 265 | "depth": 1, 266 | "source": "builtin", 267 | "dependencies": {} 268 | }, 269 | "com.unity.modules.particlesystem": { 270 | "version": "1.0.0", 271 | "depth": 1, 272 | "source": "builtin", 273 | "dependencies": {} 274 | }, 275 | "com.unity.modules.physics": { 276 | "version": "1.0.0", 277 | "depth": 2, 278 | "source": "builtin", 279 | "dependencies": {} 280 | }, 281 | "com.unity.modules.terrain": { 282 | "version": "1.0.0", 283 | "depth": 2, 284 | "source": "builtin", 285 | "dependencies": {} 286 | }, 287 | "com.unity.modules.ui": { 288 | "version": "1.0.0", 289 | "depth": 3, 290 | "source": "builtin", 291 | "dependencies": {} 292 | }, 293 | "com.unity.modules.unitywebrequest": { 294 | "version": "1.0.0", 295 | "depth": 1, 296 | "source": "builtin", 297 | "dependencies": {} 298 | } 299 | } 300 | } 301 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 1024 20 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | m_FrictionType: 0 32 | m_EnableEnhancedDeterminism: 0 33 | m_EnableUnifiedHeightmaps: 1 34 | m_DefaultMaxAngluarSpeed: 7 35 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 12 7 | m_SerializationMode: 2 8 | m_LineEndingsForNewScripts: 1 9 | m_DefaultBehaviorMode: 0 10 | m_PrefabRegularEnvironment: {fileID: 0} 11 | m_PrefabUIEnvironment: {fileID: 0} 12 | m_SpritePackerMode: 0 13 | m_SpritePackerCacheSize: 10 14 | m_SpritePackerPaddingPower: 1 15 | m_Bc7TextureCompressor: 0 16 | m_EtcTextureCompressorBehavior: 1 17 | m_EtcTextureFastCompressor: 1 18 | m_EtcTextureNormalCompressor: 2 19 | m_EtcTextureBestCompressor: 4 20 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref 21 | m_ProjectGenerationRootNamespace: 22 | m_EnableTextureStreamingInEditMode: 1 23 | m_EnableTextureStreamingInPlayMode: 1 24 | m_EnableEditorAsyncCPUTextureLoading: 0 25 | m_AsyncShaderCompilation: 1 26 | m_PrefabModeAllowAutoSave: 1 27 | m_EnterPlayModeOptionsEnabled: 1 28 | m_EnterPlayModeOptions: 3 29 | m_GameObjectNamingDigits: 1 30 | m_GameObjectNamingScheme: 0 31 | m_AssetNamingUsesSpace: 1 32 | m_InspectorUseIMGUIDefaultInspector: 0 33 | m_UseLegacyProbeSampleCount: 0 34 | m_SerializeInlineMappingsOnOneLine: 1 35 | m_DisableCookiesInLightmapper: 0 36 | m_AssetPipelineMode: 1 37 | m_RefreshImportMode: 0 38 | m_CacheServerMode: 0 39 | m_CacheServerEndpoint: 40 | m_CacheServerNamespacePrefix: default 41 | m_CacheServerEnableDownload: 1 42 | m_CacheServerEnableUpload: 1 43 | m_CacheServerEnableAuth: 0 44 | m_CacheServerEnableTls: 0 45 | m_CacheServerValidationMode: 2 46 | m_CacheServerDownloadBatchSize: 128 47 | m_EnableEnlightenBakedGI: 0 48 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 16 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_DepthNormals: 17 | m_Mode: 1 18 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 19 | m_MotionVectors: 20 | m_Mode: 1 21 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 22 | m_LightHalo: 23 | m_Mode: 1 24 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LensFlare: 26 | m_Mode: 1 27 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 28 | m_VideoShadersIncludeMode: 2 29 | m_AlwaysIncludedShaders: 30 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 31 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 32 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 36 | m_PreloadedShaders: [] 37 | m_PreloadShadersBatchTimeLimit: -1 38 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} 39 | m_CustomRenderPipeline: {fileID: 11400000, guid: 830af338d102e4e93a2e03be3a97086d, type: 2} 40 | m_TransparencySortMode: 0 41 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 42 | m_DefaultRenderingPath: 1 43 | m_DefaultMobileRenderingPath: 1 44 | m_TierSettings: [] 45 | m_LightmapStripping: 0 46 | m_FogStripping: 0 47 | m_InstancingStripping: 0 48 | m_BrgStripping: 0 49 | m_LightmapKeepPlain: 1 50 | m_LightmapKeepDirCombined: 1 51 | m_LightmapKeepDynamicPlain: 1 52 | m_LightmapKeepDynamicDirCombined: 1 53 | m_LightmapKeepShadowMask: 1 54 | m_LightmapKeepSubtractive: 1 55 | m_FogKeepLinear: 1 56 | m_FogKeepExp: 1 57 | m_FogKeepExp2: 1 58 | m_AlbedoSwatchInfos: [] 59 | m_RenderPipelineGlobalSettingsMap: 60 | UnityEngine.Rendering.Universal.UniversalRenderPipeline: {fileID: 11400000, guid: ce7ae65462ff54e3c860555fc238a103, type: 2} 61 | m_LightsUseLinearIntensity: 1 62 | m_LightsUseColorTemperature: 1 63 | m_LogWhenShaderIsCompiled: 0 64 | m_LightProbeOutsideHullStrategy: 0 65 | m_CameraRelativeLightCulling: 0 66 | m_CameraRelativeShadowCulling: 0 67 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | - serializedVersion: 3 297 | m_Name: Enable Debug Button 1 298 | descriptiveName: 299 | descriptiveNegativeName: 300 | negativeButton: 301 | positiveButton: left ctrl 302 | altNegativeButton: 303 | altPositiveButton: joystick button 8 304 | gravity: 0 305 | dead: 0 306 | sensitivity: 0 307 | snap: 0 308 | invert: 0 309 | type: 0 310 | axis: 0 311 | joyNum: 0 312 | - serializedVersion: 3 313 | m_Name: Enable Debug Button 2 314 | descriptiveName: 315 | descriptiveNegativeName: 316 | negativeButton: 317 | positiveButton: backspace 318 | altNegativeButton: 319 | altPositiveButton: joystick button 9 320 | gravity: 0 321 | dead: 0 322 | sensitivity: 0 323 | snap: 0 324 | invert: 0 325 | type: 0 326 | axis: 0 327 | joyNum: 0 328 | - serializedVersion: 3 329 | m_Name: Debug Reset 330 | descriptiveName: 331 | descriptiveNegativeName: 332 | negativeButton: 333 | positiveButton: left alt 334 | altNegativeButton: 335 | altPositiveButton: joystick button 1 336 | gravity: 0 337 | dead: 0 338 | sensitivity: 0 339 | snap: 0 340 | invert: 0 341 | type: 0 342 | axis: 0 343 | joyNum: 0 344 | - serializedVersion: 3 345 | m_Name: Debug Next 346 | descriptiveName: 347 | descriptiveNegativeName: 348 | negativeButton: 349 | positiveButton: page down 350 | altNegativeButton: 351 | altPositiveButton: joystick button 5 352 | gravity: 0 353 | dead: 0 354 | sensitivity: 0 355 | snap: 0 356 | invert: 0 357 | type: 0 358 | axis: 0 359 | joyNum: 0 360 | - serializedVersion: 3 361 | m_Name: Debug Previous 362 | descriptiveName: 363 | descriptiveNegativeName: 364 | negativeButton: 365 | positiveButton: page up 366 | altNegativeButton: 367 | altPositiveButton: joystick button 4 368 | gravity: 0 369 | dead: 0 370 | sensitivity: 0 371 | snap: 0 372 | invert: 0 373 | type: 0 374 | axis: 0 375 | joyNum: 0 376 | - serializedVersion: 3 377 | m_Name: Debug Validate 378 | descriptiveName: 379 | descriptiveNegativeName: 380 | negativeButton: 381 | positiveButton: return 382 | altNegativeButton: 383 | altPositiveButton: joystick button 0 384 | gravity: 0 385 | dead: 0 386 | sensitivity: 0 387 | snap: 0 388 | invert: 0 389 | type: 0 390 | axis: 0 391 | joyNum: 0 392 | - serializedVersion: 3 393 | m_Name: Debug Persistent 394 | descriptiveName: 395 | descriptiveNegativeName: 396 | negativeButton: 397 | positiveButton: right shift 398 | altNegativeButton: 399 | altPositiveButton: joystick button 2 400 | gravity: 0 401 | dead: 0 402 | sensitivity: 0 403 | snap: 0 404 | invert: 0 405 | type: 0 406 | axis: 0 407 | joyNum: 0 408 | - serializedVersion: 3 409 | m_Name: Debug Multiplier 410 | descriptiveName: 411 | descriptiveNegativeName: 412 | negativeButton: 413 | positiveButton: left shift 414 | altNegativeButton: 415 | altPositiveButton: joystick button 3 416 | gravity: 0 417 | dead: 0 418 | sensitivity: 0 419 | snap: 0 420 | invert: 0 421 | type: 0 422 | axis: 0 423 | joyNum: 0 424 | - serializedVersion: 3 425 | m_Name: Debug Horizontal 426 | descriptiveName: 427 | descriptiveNegativeName: 428 | negativeButton: left 429 | positiveButton: right 430 | altNegativeButton: 431 | altPositiveButton: 432 | gravity: 1000 433 | dead: 0.001 434 | sensitivity: 1000 435 | snap: 0 436 | invert: 0 437 | type: 0 438 | axis: 0 439 | joyNum: 0 440 | - serializedVersion: 3 441 | m_Name: Debug Vertical 442 | descriptiveName: 443 | descriptiveNegativeName: 444 | negativeButton: down 445 | positiveButton: up 446 | altNegativeButton: 447 | altPositiveButton: 448 | gravity: 1000 449 | dead: 0.001 450 | sensitivity: 1000 451 | snap: 0 452 | invert: 0 453 | type: 0 454 | axis: 0 455 | joyNum: 0 456 | - serializedVersion: 3 457 | m_Name: Debug Vertical 458 | descriptiveName: 459 | descriptiveNegativeName: 460 | negativeButton: down 461 | positiveButton: up 462 | altNegativeButton: 463 | altPositiveButton: 464 | gravity: 1000 465 | dead: 0.001 466 | sensitivity: 1000 467 | snap: 0 468 | invert: 0 469 | type: 2 470 | axis: 6 471 | joyNum: 0 472 | - serializedVersion: 3 473 | m_Name: Debug Horizontal 474 | descriptiveName: 475 | descriptiveNegativeName: 476 | negativeButton: left 477 | positiveButton: right 478 | altNegativeButton: 479 | altPositiveButton: 480 | gravity: 1000 481 | dead: 0.001 482 | sensitivity: 1000 483 | snap: 0 484 | invert: 0 485 | type: 2 486 | axis: 5 487 | joyNum: 0 488 | m_UsePhysicalKeys: 1 489 | -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!387306366 &1 4 | MemorySettings: 5 | m_ObjectHideFlags: 0 6 | m_EditorMemorySettings: 7 | m_MainAllocatorBlockSize: -1 8 | m_ThreadAllocatorBlockSize: -1 9 | m_MainGfxBlockSize: -1 10 | m_ThreadGfxBlockSize: -1 11 | m_CacheBlockSize: -1 12 | m_TypetreeBlockSize: -1 13 | m_ProfilerBlockSize: -1 14 | m_ProfilerEditorBlockSize: -1 15 | m_BucketAllocatorGranularity: -1 16 | m_BucketAllocatorBucketsCount: -1 17 | m_BucketAllocatorBlockSize: -1 18 | m_BucketAllocatorBlockCount: -1 19 | m_ProfilerBucketAllocatorGranularity: -1 20 | m_ProfilerBucketAllocatorBucketsCount: -1 21 | m_ProfilerBucketAllocatorBlockSize: -1 22 | m_ProfilerBucketAllocatorBlockCount: -1 23 | m_TempAllocatorSizeMain: -1 24 | m_JobTempAllocatorBlockSize: -1 25 | m_BackgroundJobTempAllocatorBlockSize: -1 26 | m_JobTempAllocatorReducedBlockSize: -1 27 | m_TempAllocatorSizeGIBakingWorker: -1 28 | m_TempAllocatorSizeNavMeshWorker: -1 29 | m_TempAllocatorSizeAudioWorker: -1 30 | m_TempAllocatorSizeCloudWorker: -1 31 | m_TempAllocatorSizeGfx: -1 32 | m_TempAllocatorSizeJobWorker: -1 33 | m_TempAllocatorSizeBackgroundWorker: -1 34 | m_TempAllocatorSizePreloadManager: -1 35 | m_PlatformMemorySettings: {} 36 | -------------------------------------------------------------------------------- /ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!655991488 &1 4 | MultiplayerManager: 5 | m_ObjectHideFlags: 0 6 | m_EnableMultiplayerRoles: 0 7 | m_StrippingTypes: {} 8 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreReleasePackages: 1 16 | m_AdvancedSettingsExpanded: 1 17 | m_ScopedRegistriesSettingsExpanded: 1 18 | m_SeeAllPackageVersions: 0 19 | m_DismissPreviewPackagesInUse: 0 20 | oneTimeWarningShown: 1 21 | oneTimeDeprecatedPopUpShown: 0 22 | m_Registries: 23 | - m_Id: main 24 | m_Name: 25 | m_Url: https://packages.unity.com 26 | m_Scopes: [] 27 | m_IsDefault: 1 28 | m_Capabilities: 7 29 | m_ConfigSource: 0 30 | - m_Id: scoped:project:Keijiro 31 | m_Name: Keijiro 32 | m_Url: https://registry.npmjs.com 33 | m_Scopes: 34 | - jp.keijiro 35 | m_IsDefault: 0 36 | m_Capabilities: 0 37 | m_ConfigSource: 4 38 | m_UserSelectedRegistryName: Keijiro 39 | m_UserAddingNewScopedRegistry: 0 40 | m_RegistryInfoDraft: 41 | m_Modified: 0 42 | m_ErrorMessage: 43 | m_UserModificationsInstanceId: -840 44 | m_OriginalInstanceId: -842 45 | m_LoadAssets: 0 46 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 6000.0.35f1 2 | m_EditorVersionWithRevision: 6000.0.35f1 (9a3bc604008a) 3 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 0 8 | m_QualitySettings: 9 | - serializedVersion: 4 10 | name: High 11 | pixelLightCount: 2 12 | shadows: 2 13 | shadowResolution: 1 14 | shadowProjection: 1 15 | shadowCascades: 2 16 | shadowDistance: 40 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 1 21 | skinWeights: 2 22 | globalTextureMipmapLimit: 0 23 | textureMipmapLimitSettings: [] 24 | anisotropicTextures: 1 25 | antiAliasing: 0 26 | softParticles: 0 27 | softVegetation: 1 28 | realtimeReflectionProbes: 1 29 | billboardsFaceCameraPosition: 1 30 | useLegacyDetailDistribution: 1 31 | adaptiveVsync: 0 32 | vSyncCount: 1 33 | realtimeGICPUUsage: 25 34 | adaptiveVsyncExtraA: 0 35 | adaptiveVsyncExtraB: 0 36 | lodBias: 1 37 | maximumLODLevel: 0 38 | enableLODCrossFade: 0 39 | streamingMipmapsActive: 0 40 | streamingMipmapsAddAllCameras: 1 41 | streamingMipmapsMemoryBudget: 512 42 | streamingMipmapsRenderersPerFrame: 512 43 | streamingMipmapsMaxLevelReduction: 2 44 | streamingMipmapsMaxFileIORequests: 1024 45 | particleRaycastBudget: 256 46 | asyncUploadTimeSlice: 2 47 | asyncUploadBufferSize: 16 48 | asyncUploadPersistentBuffer: 1 49 | resolutionScalingFixedDPIFactor: 1 50 | customRenderPipeline: {fileID: 0} 51 | terrainQualityOverrides: 0 52 | terrainPixelError: 1 53 | terrainDetailDensityScale: 1 54 | terrainBasemapDistance: 1000 55 | terrainDetailDistance: 80 56 | terrainTreeDistance: 5000 57 | terrainBillboardStart: 50 58 | terrainFadeLength: 5 59 | terrainMaxTrees: 50 60 | excludedTargetPlatforms: [] 61 | m_TextureMipmapLimitGroupNames: [] 62 | m_PerPlatformDefaultQuality: 63 | Android: 0 64 | Lumin: 0 65 | Nintendo 3DS: 0 66 | Nintendo Switch: 0 67 | PS4: 0 68 | PSP2: 0 69 | Stadia: 0 70 | Standalone: 0 71 | WebGL: 0 72 | Windows Store Apps: 0 73 | XboxOne: 0 74 | iPhone: 0 75 | tvOS: 0 76 | -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "templatePinStates": [], 3 | "dependencyTypeInfos": [ 4 | { 5 | "userAdded": false, 6 | "type": "UnityEngine.AnimationClip", 7 | "defaultInstantiationMode": 0 8 | }, 9 | { 10 | "userAdded": false, 11 | "type": "UnityEditor.Animations.AnimatorController", 12 | "defaultInstantiationMode": 0 13 | }, 14 | { 15 | "userAdded": false, 16 | "type": "UnityEngine.AnimatorOverrideController", 17 | "defaultInstantiationMode": 0 18 | }, 19 | { 20 | "userAdded": false, 21 | "type": "UnityEditor.Audio.AudioMixerController", 22 | "defaultInstantiationMode": 0 23 | }, 24 | { 25 | "userAdded": false, 26 | "type": "UnityEngine.ComputeShader", 27 | "defaultInstantiationMode": 1 28 | }, 29 | { 30 | "userAdded": false, 31 | "type": "UnityEngine.Cubemap", 32 | "defaultInstantiationMode": 0 33 | }, 34 | { 35 | "userAdded": false, 36 | "type": "UnityEngine.GameObject", 37 | "defaultInstantiationMode": 0 38 | }, 39 | { 40 | "userAdded": false, 41 | "type": "UnityEditor.LightingDataAsset", 42 | "defaultInstantiationMode": 0 43 | }, 44 | { 45 | "userAdded": false, 46 | "type": "UnityEngine.LightingSettings", 47 | "defaultInstantiationMode": 0 48 | }, 49 | { 50 | "userAdded": false, 51 | "type": "UnityEngine.Material", 52 | "defaultInstantiationMode": 0 53 | }, 54 | { 55 | "userAdded": false, 56 | "type": "UnityEditor.MonoScript", 57 | "defaultInstantiationMode": 1 58 | }, 59 | { 60 | "userAdded": false, 61 | "type": "UnityEngine.PhysicMaterial", 62 | "defaultInstantiationMode": 0 63 | }, 64 | { 65 | "userAdded": false, 66 | "type": "UnityEngine.PhysicsMaterial", 67 | "defaultInstantiationMode": 0 68 | }, 69 | { 70 | "userAdded": false, 71 | "type": "UnityEngine.PhysicsMaterial2D", 72 | "defaultInstantiationMode": 0 73 | }, 74 | { 75 | "userAdded": false, 76 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", 77 | "defaultInstantiationMode": 0 78 | }, 79 | { 80 | "userAdded": false, 81 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", 82 | "defaultInstantiationMode": 0 83 | }, 84 | { 85 | "userAdded": false, 86 | "type": "UnityEngine.Rendering.VolumeProfile", 87 | "defaultInstantiationMode": 0 88 | }, 89 | { 90 | "userAdded": false, 91 | "type": "UnityEditor.SceneAsset", 92 | "defaultInstantiationMode": 0 93 | }, 94 | { 95 | "userAdded": false, 96 | "type": "UnityEngine.Shader", 97 | "defaultInstantiationMode": 1 98 | }, 99 | { 100 | "userAdded": false, 101 | "type": "UnityEngine.ShaderVariantCollection", 102 | "defaultInstantiationMode": 1 103 | }, 104 | { 105 | "userAdded": false, 106 | "type": "UnityEngine.Texture", 107 | "defaultInstantiationMode": 0 108 | }, 109 | { 110 | "userAdded": false, 111 | "type": "UnityEngine.Texture2D", 112 | "defaultInstantiationMode": 0 113 | }, 114 | { 115 | "userAdded": false, 116 | "type": "UnityEngine.Timeline.TimelineAsset", 117 | "defaultInstantiationMode": 0 118 | } 119 | ], 120 | "defaultDependencyTypeInfo": { 121 | "userAdded": false, 122 | "type": "", 123 | "defaultInstantiationMode": 1 124 | }, 125 | "newSceneOverride": 0 126 | } -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | shaderVariantLimit: 2048 16 | customInterpolatorErrorThreshold: 32 17 | customInterpolatorWarningThreshold: 16 18 | customHeatmapValues: {fileID: 0} 19 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a287be6c49135cd4f9b2b8666c39d999, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | assetDefaultFramerate: 60 16 | m_DefaultFrameRate: 60 17 | -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 247994e1f5a72c2419c26a37e9334c01, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_LastMaterialVersion: 9 16 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_DashboardUrl: https://dashboard.unity3d.com 13 | m_TestInitMode: 0 14 | CrashReportingSettings: 15 | m_EventUrl: https://perf-events.cloud.unity3d.com 16 | m_Enabled: 0 17 | m_LogBufferSize: 10 18 | m_CaptureEditorExceptions: 1 19 | UnityPurchasingSettings: 20 | m_Enabled: 0 21 | m_TestMode: 0 22 | UnityAnalyticsSettings: 23 | m_Enabled: 0 24 | m_TestMode: 0 25 | m_InitializeOnStartup: 1 26 | m_PackageRequiringCoreStatsPresent: 0 27 | UnityAdsSettings: 28 | m_Enabled: 0 29 | m_InitializeOnStartup: 1 30 | m_TestMode: 0 31 | m_IosGameId: 32 | m_AndroidGameId: 33 | m_GameIds: {} 34 | m_GameId: 35 | PerformanceReportingSettings: 36 | m_Enabled: 0 37 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 7200000, guid: 84a17cfa13e40ae4082ef42714f0a81c, type: 3} 7 | m_CopyBufferShader: {fileID: 7200000, guid: 23c51f21a3503f6428b527b01f8a2f4e, type: 3} 8 | m_SortShader: {fileID: 7200000, guid: ea257ca3cfb12a642a5025e612af6b2a, type: 3} 9 | m_StripUpdateShader: {fileID: 7200000, guid: 8fa6c4009fe2a4d4486c62736fc30ad8, type: 3} 10 | m_EmptyShader: {fileID: 4800000, guid: 33a2079f6a2db4c4eb2e44b33f4ddf6b, type: 3} 11 | m_RenderPipeSettingsPath: 12 | m_FixedTimeStep: 0.016666668 13 | m_MaxDeltaTime: 0.05 14 | m_MaxScrubTime: 30 15 | m_MaxCapacity: 100000000 16 | m_CompiledVersion: 7 17 | m_RuntimeVersion: 38 18 | m_RuntimeResources: {fileID: 11400000, guid: bc10b42afe3813544bffd38ae2cd893d, type: 2} 19 | m_BatchEmptyLifetime: 300 20 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ScreenSpaceLensFlareTest 2 | 3 | ![out1](https://user-images.githubusercontent.com/343936/232314671-b6f3c4f8-bf3a-4666-add9-cfd324102f30.gif) 4 | ![out2](https://user-images.githubusercontent.com/343936/232314679-b5f07a6b-9412-411f-a741-18ae12c60cd4.gif) 5 | 6 | Sample scenes for the Screen Space Lens Flare effect (Unity 6 URP) 7 | --------------------------------------------------------------------------------