├── .gitignore ├── Assets ├── BrunetonsImprovedAtmosphere.meta └── BrunetonsImprovedAtmosphere │ ├── Demo.unity │ ├── Demo.unity.meta │ ├── Materials.meta │ ├── Materials │ ├── RenderSky.mat │ └── RenderSky.mat.meta │ ├── Scripts.meta │ ├── Scripts │ ├── CBRead.cs │ ├── CBRead.cs.meta │ ├── CBWrite.cs │ ├── CBWrite.cs.meta │ ├── CONSTANTS.cs │ ├── CONSTANTS.cs.meta │ ├── Demo.cs │ ├── Demo.cs.meta │ ├── DensityProfileLayer.cs │ ├── DensityProfileLayer.cs.meta │ ├── Model.cs │ ├── Model.cs.meta │ ├── RotateCamera.cs │ ├── RotateCamera.cs.meta │ ├── RotateLight.cs │ ├── RotateLight.cs.meta │ ├── TextureBuffer.cs │ └── TextureBuffer.cs.meta │ ├── Shaders.meta │ └── Shaders │ ├── Definitions.cginc │ ├── Definitions.cginc.meta │ ├── IrradianceFunctions.cginc │ ├── IrradianceFunctions.cginc.meta │ ├── Precomputation.compute │ ├── Precomputation.compute.meta │ ├── Read.compute │ ├── Read.compute.meta │ ├── RenderSky.shader │ ├── RenderSky.shader.meta │ ├── RenderingFunctions.cginc │ ├── RenderingFunctions.cginc.meta │ ├── ScatteringFunctions.cginc │ ├── ScatteringFunctions.cginc.meta │ ├── TransmittanceFunctions.cginc │ ├── TransmittanceFunctions.cginc.meta │ ├── UtilityFunctions.cginc │ ├── UtilityFunctions.cginc.meta │ ├── Write.compute │ └── Write.compute.meta ├── LICENSE ├── Media ├── BrunetonsImprovedScatter1.jpg ├── BrunetonsImprovedScatter2.jpg ├── BrunetonsImprovedScatter3.jpg ├── BrunetonsImprovedScatter4.jpg └── BrunetonsImprovedScatter5.jpg ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Demo.unity -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Demo.unity.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Materials.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Materials/RenderSky.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Materials/RenderSky.mat -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Materials/RenderSky.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Materials/RenderSky.mat.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/CBRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/CBRead.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/CBRead.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/CBRead.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/CBWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/CBWrite.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/CBWrite.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/CBWrite.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/CONSTANTS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/CONSTANTS.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/CONSTANTS.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/CONSTANTS.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/Demo.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/Demo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/Demo.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/DensityProfileLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/DensityProfileLayer.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/DensityProfileLayer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/DensityProfileLayer.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/Model.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/Model.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/Model.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/RotateCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/RotateCamera.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/RotateCamera.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/RotateCamera.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/RotateLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/RotateLight.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/RotateLight.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/RotateLight.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/TextureBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/TextureBuffer.cs -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Scripts/TextureBuffer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Scripts/TextureBuffer.cs.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/Definitions.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/Definitions.cginc -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/Definitions.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/Definitions.cginc.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/IrradianceFunctions.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/IrradianceFunctions.cginc -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/IrradianceFunctions.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/IrradianceFunctions.cginc.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/Precomputation.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/Precomputation.compute -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/Precomputation.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/Precomputation.compute.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/Read.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/Read.compute -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/Read.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/Read.compute.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/RenderSky.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/RenderSky.shader -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/RenderSky.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/RenderSky.shader.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/RenderingFunctions.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/RenderingFunctions.cginc -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/RenderingFunctions.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/RenderingFunctions.cginc.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/ScatteringFunctions.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/ScatteringFunctions.cginc -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/ScatteringFunctions.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/ScatteringFunctions.cginc.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/TransmittanceFunctions.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/TransmittanceFunctions.cginc -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/TransmittanceFunctions.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/TransmittanceFunctions.cginc.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/UtilityFunctions.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/UtilityFunctions.cginc -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/UtilityFunctions.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/UtilityFunctions.cginc.meta -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/Write.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/Write.compute -------------------------------------------------------------------------------- /Assets/BrunetonsImprovedAtmosphere/Shaders/Write.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Assets/BrunetonsImprovedAtmosphere/Shaders/Write.compute.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/BrunetonsImprovedScatter1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Media/BrunetonsImprovedScatter1.jpg -------------------------------------------------------------------------------- /Media/BrunetonsImprovedScatter2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Media/BrunetonsImprovedScatter2.jpg -------------------------------------------------------------------------------- /Media/BrunetonsImprovedScatter3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Media/BrunetonsImprovedScatter3.jpg -------------------------------------------------------------------------------- /Media/BrunetonsImprovedScatter4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Media/BrunetonsImprovedScatter4.jpg -------------------------------------------------------------------------------- /Media/BrunetonsImprovedScatter5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Media/BrunetonsImprovedScatter5.jpg -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scrawk/Brunetons-Improved-Atmospheric-Scattering/HEAD/README.md --------------------------------------------------------------------------------