├── Editor.meta ├── Editor ├── AtmosphericScatteringEditor.cs ├── AtmosphericScatteringEditor.cs.meta ├── Nothke.AtmosphericScattering.Editor.asmdef └── Nothke.AtmosphericScattering.Editor.asmdef.meta ├── README.md ├── Runtime.meta ├── Runtime ├── AtmosphericScattering.cs ├── AtmosphericScattering.cs.meta ├── Nothke.AtmosphericScattering.asmdef ├── Nothke.AtmosphericScattering.asmdef.meta ├── Shaders.meta └── Shaders │ ├── AtmosphericScattering.cginc │ ├── AtmosphericScattering.cginc.meta │ ├── AtmosphericScattering.compute │ ├── AtmosphericScattering.compute.meta │ ├── AtmosphericScattering.shader │ ├── AtmosphericScattering.shader.meta │ ├── AtmosphericScatteringSkybox.shader │ ├── AtmosphericScatteringSkybox.shader.meta │ ├── LightShafts.shader │ └── LightShafts.shader.meta ├── package.json └── package.json.meta /Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Editor.meta -------------------------------------------------------------------------------- /Editor/AtmosphericScatteringEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Editor/AtmosphericScatteringEditor.cs -------------------------------------------------------------------------------- /Editor/AtmosphericScatteringEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Editor/AtmosphericScatteringEditor.cs.meta -------------------------------------------------------------------------------- /Editor/Nothke.AtmosphericScattering.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Editor/Nothke.AtmosphericScattering.Editor.asmdef -------------------------------------------------------------------------------- /Editor/Nothke.AtmosphericScattering.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Editor/Nothke.AtmosphericScattering.Editor.asmdef.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/README.md -------------------------------------------------------------------------------- /Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime.meta -------------------------------------------------------------------------------- /Runtime/AtmosphericScattering.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/AtmosphericScattering.cs -------------------------------------------------------------------------------- /Runtime/AtmosphericScattering.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/AtmosphericScattering.cs.meta -------------------------------------------------------------------------------- /Runtime/Nothke.AtmosphericScattering.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Nothke.AtmosphericScattering" 3 | } 4 | -------------------------------------------------------------------------------- /Runtime/Nothke.AtmosphericScattering.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Nothke.AtmosphericScattering.asmdef.meta -------------------------------------------------------------------------------- /Runtime/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders.meta -------------------------------------------------------------------------------- /Runtime/Shaders/AtmosphericScattering.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/AtmosphericScattering.cginc -------------------------------------------------------------------------------- /Runtime/Shaders/AtmosphericScattering.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/AtmosphericScattering.cginc.meta -------------------------------------------------------------------------------- /Runtime/Shaders/AtmosphericScattering.compute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/AtmosphericScattering.compute -------------------------------------------------------------------------------- /Runtime/Shaders/AtmosphericScattering.compute.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/AtmosphericScattering.compute.meta -------------------------------------------------------------------------------- /Runtime/Shaders/AtmosphericScattering.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/AtmosphericScattering.shader -------------------------------------------------------------------------------- /Runtime/Shaders/AtmosphericScattering.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/AtmosphericScattering.shader.meta -------------------------------------------------------------------------------- /Runtime/Shaders/AtmosphericScatteringSkybox.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/AtmosphericScatteringSkybox.shader -------------------------------------------------------------------------------- /Runtime/Shaders/AtmosphericScatteringSkybox.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/AtmosphericScatteringSkybox.shader.meta -------------------------------------------------------------------------------- /Runtime/Shaders/LightShafts.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/LightShafts.shader -------------------------------------------------------------------------------- /Runtime/Shaders/LightShafts.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/Runtime/Shaders/LightShafts.shader.meta -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/package.json -------------------------------------------------------------------------------- /package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothke/atmospheric-scattering/HEAD/package.json.meta --------------------------------------------------------------------------------