├── .gitattributes ├── .gitignore ├── Assets ├── Breath │ ├── BreathEffect.shader │ └── breath.gif ├── Distortion │ ├── BarrelDistortion.cs │ ├── BarrelDistortion.shader │ ├── Disturbance.shader │ ├── GhostScene.shader │ ├── distortion.gif │ ├── disturbance.gif │ ├── disturbance.jpg │ └── ghost.gif ├── Editor.meta ├── Editor │ ├── PngSerialize.cs │ └── PngSerialize.cs.meta ├── Forge.meta ├── Forge │ ├── Forge.shader │ ├── Forge.shader.meta │ ├── forge.mat │ ├── forge.mat.meta │ ├── forgeResult.png │ └── forgeResult.png.meta ├── Grey.meta ├── Grey │ ├── GreyEffect.cs │ ├── GreyEffect.cs.meta │ ├── GreyEffect.shader │ ├── GreyEffect.shader.meta │ ├── ImageGrey.mat │ ├── ImageGrey.mat.meta │ ├── ImageGrey.shader │ ├── ImageGrey.shader.meta │ ├── New Material.mat │ ├── New Material.mat.meta │ ├── PostEffectsBase.cs │ ├── PostEffectsBase.cs.meta │ ├── greyEffect.png │ ├── greyEffect.png.meta │ ├── imageGrey.png │ └── imageGrey.png.meta ├── RoundRect.meta ├── RoundRect │ ├── RoundRect.mat │ ├── RoundRect.mat.meta │ ├── RoundRect.shader │ ├── RoundRect.shader.meta │ ├── roundRect.png │ └── roundRect.png.meta ├── Toon.meta ├── Toon │ ├── Toon.mat │ ├── Toon.mat.meta │ ├── ToonShading.shader │ ├── ToonShading.shader.meta │ ├── toon.png │ └── toon.png.meta ├── UIMask.meta ├── UIMask │ ├── RectMask.mat │ ├── RectMask.mat.meta │ ├── RotateMask.mat │ ├── RotateMask.mat.meta │ ├── RotateMaskShader.shader │ ├── RotateMaskShader.shader.meta │ ├── SoftMask.mat │ ├── SoftMask.mat.meta │ ├── UIRectSoftMask.shader │ ├── UIRectSoftMask.shader.meta │ ├── UISoftMask.shader │ ├── UISoftMask.shader.meta │ ├── rectMask.png │ ├── rectMask.png.meta │ ├── rectMaskInspector.png │ ├── rectMaskInspector.png.meta │ ├── rotateMask.gif │ ├── rotateMask.gif.meta │ ├── soft1.png │ ├── soft1.png.meta │ ├── soft11.png │ ├── soft11.png.meta │ ├── soft2.png │ ├── soft2.png.meta │ ├── soft22.png │ └── soft22.png.meta ├── UIParticleMask.meta ├── UIParticleMask │ ├── README.md │ ├── README.md.meta │ ├── UIDefaultMask.shader │ ├── UIDefaultMask.shader.meta │ ├── UIParticleAdditive.shader │ ├── UIParticleAdditive.shader.meta │ ├── UIParticleBlend.shader │ ├── UIParticleBlend.shader.meta │ ├── clip.png │ └── clip.png.meta ├── WaterPlaneShader.shader └── WaterPlaneShader.shader.meta ├── 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 └── UnityPackageManager └── manifest.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Breath/BreathEffect.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Breath/BreathEffect.shader -------------------------------------------------------------------------------- /Assets/Breath/breath.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Breath/breath.gif -------------------------------------------------------------------------------- /Assets/Distortion/BarrelDistortion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Distortion/BarrelDistortion.cs -------------------------------------------------------------------------------- /Assets/Distortion/BarrelDistortion.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Distortion/BarrelDistortion.shader -------------------------------------------------------------------------------- /Assets/Distortion/Disturbance.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Distortion/Disturbance.shader -------------------------------------------------------------------------------- /Assets/Distortion/GhostScene.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Distortion/GhostScene.shader -------------------------------------------------------------------------------- /Assets/Distortion/distortion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Distortion/distortion.gif -------------------------------------------------------------------------------- /Assets/Distortion/disturbance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Distortion/disturbance.gif -------------------------------------------------------------------------------- /Assets/Distortion/disturbance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Distortion/disturbance.jpg -------------------------------------------------------------------------------- /Assets/Distortion/ghost.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Distortion/ghost.gif -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Editor.meta -------------------------------------------------------------------------------- /Assets/Editor/PngSerialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Editor/PngSerialize.cs -------------------------------------------------------------------------------- /Assets/Editor/PngSerialize.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Editor/PngSerialize.cs.meta -------------------------------------------------------------------------------- /Assets/Forge.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Forge.meta -------------------------------------------------------------------------------- /Assets/Forge/Forge.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Forge/Forge.shader -------------------------------------------------------------------------------- /Assets/Forge/Forge.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Forge/Forge.shader.meta -------------------------------------------------------------------------------- /Assets/Forge/forge.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Forge/forge.mat -------------------------------------------------------------------------------- /Assets/Forge/forge.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Forge/forge.mat.meta -------------------------------------------------------------------------------- /Assets/Forge/forgeResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Forge/forgeResult.png -------------------------------------------------------------------------------- /Assets/Forge/forgeResult.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Forge/forgeResult.png.meta -------------------------------------------------------------------------------- /Assets/Grey.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey.meta -------------------------------------------------------------------------------- /Assets/Grey/GreyEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/GreyEffect.cs -------------------------------------------------------------------------------- /Assets/Grey/GreyEffect.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/GreyEffect.cs.meta -------------------------------------------------------------------------------- /Assets/Grey/GreyEffect.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/GreyEffect.shader -------------------------------------------------------------------------------- /Assets/Grey/GreyEffect.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/GreyEffect.shader.meta -------------------------------------------------------------------------------- /Assets/Grey/ImageGrey.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/ImageGrey.mat -------------------------------------------------------------------------------- /Assets/Grey/ImageGrey.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/ImageGrey.mat.meta -------------------------------------------------------------------------------- /Assets/Grey/ImageGrey.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/ImageGrey.shader -------------------------------------------------------------------------------- /Assets/Grey/ImageGrey.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/ImageGrey.shader.meta -------------------------------------------------------------------------------- /Assets/Grey/New Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/New Material.mat -------------------------------------------------------------------------------- /Assets/Grey/New Material.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/New Material.mat.meta -------------------------------------------------------------------------------- /Assets/Grey/PostEffectsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/PostEffectsBase.cs -------------------------------------------------------------------------------- /Assets/Grey/PostEffectsBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/PostEffectsBase.cs.meta -------------------------------------------------------------------------------- /Assets/Grey/greyEffect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/greyEffect.png -------------------------------------------------------------------------------- /Assets/Grey/greyEffect.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/greyEffect.png.meta -------------------------------------------------------------------------------- /Assets/Grey/imageGrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/imageGrey.png -------------------------------------------------------------------------------- /Assets/Grey/imageGrey.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Grey/imageGrey.png.meta -------------------------------------------------------------------------------- /Assets/RoundRect.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/RoundRect.meta -------------------------------------------------------------------------------- /Assets/RoundRect/RoundRect.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/RoundRect/RoundRect.mat -------------------------------------------------------------------------------- /Assets/RoundRect/RoundRect.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/RoundRect/RoundRect.mat.meta -------------------------------------------------------------------------------- /Assets/RoundRect/RoundRect.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/RoundRect/RoundRect.shader -------------------------------------------------------------------------------- /Assets/RoundRect/RoundRect.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/RoundRect/RoundRect.shader.meta -------------------------------------------------------------------------------- /Assets/RoundRect/roundRect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/RoundRect/roundRect.png -------------------------------------------------------------------------------- /Assets/RoundRect/roundRect.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/RoundRect/roundRect.png.meta -------------------------------------------------------------------------------- /Assets/Toon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Toon.meta -------------------------------------------------------------------------------- /Assets/Toon/Toon.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Toon/Toon.mat -------------------------------------------------------------------------------- /Assets/Toon/Toon.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Toon/Toon.mat.meta -------------------------------------------------------------------------------- /Assets/Toon/ToonShading.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Toon/ToonShading.shader -------------------------------------------------------------------------------- /Assets/Toon/ToonShading.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Toon/ToonShading.shader.meta -------------------------------------------------------------------------------- /Assets/Toon/toon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Toon/toon.png -------------------------------------------------------------------------------- /Assets/Toon/toon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/Toon/toon.png.meta -------------------------------------------------------------------------------- /Assets/UIMask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask.meta -------------------------------------------------------------------------------- /Assets/UIMask/RectMask.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/RectMask.mat -------------------------------------------------------------------------------- /Assets/UIMask/RectMask.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/RectMask.mat.meta -------------------------------------------------------------------------------- /Assets/UIMask/RotateMask.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/RotateMask.mat -------------------------------------------------------------------------------- /Assets/UIMask/RotateMask.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/RotateMask.mat.meta -------------------------------------------------------------------------------- /Assets/UIMask/RotateMaskShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/RotateMaskShader.shader -------------------------------------------------------------------------------- /Assets/UIMask/RotateMaskShader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/RotateMaskShader.shader.meta -------------------------------------------------------------------------------- /Assets/UIMask/SoftMask.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/SoftMask.mat -------------------------------------------------------------------------------- /Assets/UIMask/SoftMask.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/SoftMask.mat.meta -------------------------------------------------------------------------------- /Assets/UIMask/UIRectSoftMask.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/UIRectSoftMask.shader -------------------------------------------------------------------------------- /Assets/UIMask/UIRectSoftMask.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/UIRectSoftMask.shader.meta -------------------------------------------------------------------------------- /Assets/UIMask/UISoftMask.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/UISoftMask.shader -------------------------------------------------------------------------------- /Assets/UIMask/UISoftMask.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/UISoftMask.shader.meta -------------------------------------------------------------------------------- /Assets/UIMask/rectMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/rectMask.png -------------------------------------------------------------------------------- /Assets/UIMask/rectMask.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/rectMask.png.meta -------------------------------------------------------------------------------- /Assets/UIMask/rectMaskInspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/rectMaskInspector.png -------------------------------------------------------------------------------- /Assets/UIMask/rectMaskInspector.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/rectMaskInspector.png.meta -------------------------------------------------------------------------------- /Assets/UIMask/rotateMask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/rotateMask.gif -------------------------------------------------------------------------------- /Assets/UIMask/rotateMask.gif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/rotateMask.gif.meta -------------------------------------------------------------------------------- /Assets/UIMask/soft1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/soft1.png -------------------------------------------------------------------------------- /Assets/UIMask/soft1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/soft1.png.meta -------------------------------------------------------------------------------- /Assets/UIMask/soft11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/soft11.png -------------------------------------------------------------------------------- /Assets/UIMask/soft11.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/soft11.png.meta -------------------------------------------------------------------------------- /Assets/UIMask/soft2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/soft2.png -------------------------------------------------------------------------------- /Assets/UIMask/soft2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/soft2.png.meta -------------------------------------------------------------------------------- /Assets/UIMask/soft22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/soft22.png -------------------------------------------------------------------------------- /Assets/UIMask/soft22.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIMask/soft22.png.meta -------------------------------------------------------------------------------- /Assets/UIParticleMask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask.meta -------------------------------------------------------------------------------- /Assets/UIParticleMask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/README.md -------------------------------------------------------------------------------- /Assets/UIParticleMask/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/README.md.meta -------------------------------------------------------------------------------- /Assets/UIParticleMask/UIDefaultMask.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/UIDefaultMask.shader -------------------------------------------------------------------------------- /Assets/UIParticleMask/UIDefaultMask.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/UIDefaultMask.shader.meta -------------------------------------------------------------------------------- /Assets/UIParticleMask/UIParticleAdditive.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/UIParticleAdditive.shader -------------------------------------------------------------------------------- /Assets/UIParticleMask/UIParticleAdditive.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/UIParticleAdditive.shader.meta -------------------------------------------------------------------------------- /Assets/UIParticleMask/UIParticleBlend.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/UIParticleBlend.shader -------------------------------------------------------------------------------- /Assets/UIParticleMask/UIParticleBlend.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/UIParticleBlend.shader.meta -------------------------------------------------------------------------------- /Assets/UIParticleMask/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/clip.png -------------------------------------------------------------------------------- /Assets/UIParticleMask/clip.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/UIParticleMask/clip.png.meta -------------------------------------------------------------------------------- /Assets/WaterPlaneShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/WaterPlaneShader.shader -------------------------------------------------------------------------------- /Assets/WaterPlaneShader.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/Assets/WaterPlaneShader.shader.meta -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.2.0f3 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garsonlab/UnityShaderRepository/HEAD/README.md -------------------------------------------------------------------------------- /UnityPackageManager/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | } 4 | } 5 | --------------------------------------------------------------------------------