├── .gitignore ├── Assets ├── DitheredShadows.meta └── DitheredShadows │ ├── Editor.meta │ ├── Editor │ ├── DitheredShadowsEditor.cs │ └── DitheredShadowsEditor.cs.meta │ ├── Example.meta │ ├── Example │ ├── ExampleScene.unity │ └── ExampleScene.unity.meta │ ├── Resources.meta │ ├── Resources │ ├── Internal-DeferredShading-Dithering.shader │ ├── Internal-DeferredShading-Dithering.shader.meta │ ├── Internal-ScreenSpaceShadows-Dithering.shader │ ├── Internal-ScreenSpaceShadows-Dithering.shader.meta │ ├── NoiseHigh.png │ ├── NoiseHigh.png.meta │ ├── UnityDeferredLibrary.cginc │ └── UnityDeferredLibrary.cginc.meta │ ├── Scripts.meta │ └── Scripts │ ├── DitheredShadows.cs │ └── DitheredShadows.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── UnityPackage └── Dithered Shadows.unitypackage /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/DitheredShadows.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Editor.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Editor/DitheredShadowsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Editor/DitheredShadowsEditor.cs -------------------------------------------------------------------------------- /Assets/DitheredShadows/Editor/DitheredShadowsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Editor/DitheredShadowsEditor.cs.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Example.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Example/ExampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Example/ExampleScene.unity -------------------------------------------------------------------------------- /Assets/DitheredShadows/Example/ExampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Example/ExampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources/Internal-DeferredShading-Dithering.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources/Internal-DeferredShading-Dithering.shader -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources/Internal-DeferredShading-Dithering.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources/Internal-DeferredShading-Dithering.shader.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources/Internal-ScreenSpaceShadows-Dithering.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources/Internal-ScreenSpaceShadows-Dithering.shader -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources/Internal-ScreenSpaceShadows-Dithering.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources/Internal-ScreenSpaceShadows-Dithering.shader.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources/NoiseHigh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources/NoiseHigh.png -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources/NoiseHigh.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources/NoiseHigh.png.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources/UnityDeferredLibrary.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources/UnityDeferredLibrary.cginc -------------------------------------------------------------------------------- /Assets/DitheredShadows/Resources/UnityDeferredLibrary.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Resources/UnityDeferredLibrary.cginc.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Scripts.meta -------------------------------------------------------------------------------- /Assets/DitheredShadows/Scripts/DitheredShadows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Scripts/DitheredShadows.cs -------------------------------------------------------------------------------- /Assets/DitheredShadows/Scripts/DitheredShadows.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/Assets/DitheredShadows/Scripts/DitheredShadows.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.3.1f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/README.md -------------------------------------------------------------------------------- /UnityPackage/Dithered Shadows.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bodhid/UnityDitheredShadows/HEAD/UnityPackage/Dithered Shadows.unitypackage --------------------------------------------------------------------------------