├── .gitignore ├── .idea └── .idea.LightLeaks1 │ ├── .idea │ ├── .name │ ├── modules.xml │ └── workspace.xml │ └── riderModule.iml ├── Assets ├── Demo.unity ├── Demo.unity.meta ├── LightLeaks.meta └── LightLeaks │ ├── LightLeaks.cs │ ├── LightLeaks.cs.meta │ ├── LightLeaks.shader │ ├── LightLeaks.shader.meta │ ├── UnsplashPhoto.jpeg │ └── UnsplashPhoto.jpeg.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 ├── UnityAdsSettings.asset └── UnityConnectSettings.asset ├── README.md └── lightleak.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.LightLeaks1/.idea/.name: -------------------------------------------------------------------------------- 1 | LightLeaks1 -------------------------------------------------------------------------------- /.idea/.idea.LightLeaks1/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/.idea/.idea.LightLeaks1/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/.idea.LightLeaks1/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/.idea/.idea.LightLeaks1/.idea/workspace.xml -------------------------------------------------------------------------------- /.idea/.idea.LightLeaks1/riderModule.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/.idea/.idea.LightLeaks1/riderModule.iml -------------------------------------------------------------------------------- /Assets/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/Demo.unity -------------------------------------------------------------------------------- /Assets/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/Demo.unity.meta -------------------------------------------------------------------------------- /Assets/LightLeaks.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/LightLeaks.meta -------------------------------------------------------------------------------- /Assets/LightLeaks/LightLeaks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/LightLeaks/LightLeaks.cs -------------------------------------------------------------------------------- /Assets/LightLeaks/LightLeaks.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/LightLeaks/LightLeaks.cs.meta -------------------------------------------------------------------------------- /Assets/LightLeaks/LightLeaks.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/LightLeaks/LightLeaks.shader -------------------------------------------------------------------------------- /Assets/LightLeaks/LightLeaks.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/LightLeaks/LightLeaks.shader.meta -------------------------------------------------------------------------------- /Assets/LightLeaks/UnsplashPhoto.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/LightLeaks/UnsplashPhoto.jpeg -------------------------------------------------------------------------------- /Assets/LightLeaks/UnsplashPhoto.jpeg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/Assets/LightLeaks/UnsplashPhoto.jpeg.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/README.md -------------------------------------------------------------------------------- /lightleak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielzeller/LightLeaksUnity/HEAD/lightleak.gif --------------------------------------------------------------------------------