├── .gitignore ├── John Lim's Blend Modes ├── Add.shader ├── Add.shader.meta ├── CGIncludes.meta ├── CGIncludes │ ├── PhotoshopBlendModes.cginc │ └── PhotoshopBlendModes.cginc.meta ├── Color.shader ├── Color.shader.meta ├── ColorBurn.shader ├── ColorBurn.shader.meta ├── ColorDodge.shader ├── ColorDodge.shader.meta ├── DarkerColor.shader ├── DarkerColor.shader.meta ├── Difference.shader ├── Difference.shader.meta ├── Divide.shader ├── Divide.shader.meta ├── Exclusion.shader ├── Exclusion.shader.meta ├── HardLight.shader ├── HardLight.shader.meta ├── HardMix.shader ├── HardMix.shader.meta ├── Hue.shader ├── Hue.shader.meta ├── Lighten.shader ├── Lighten.shader.meta ├── LighterColor.shader ├── LighterColor.shader.meta ├── LinearBurn.shader ├── LinearBurn.shader.meta ├── LinearDodge.shader ├── LinearDodge.shader.meta ├── LinearLight.shader ├── LinearLight.shader.meta ├── Luminosity.shader ├── Luminosity.shader.meta ├── Overlay.shader ├── Overlay.shader.meta ├── PinLight.shader ├── PinLight.shader.meta ├── Saturation.shader ├── Saturation.shader.meta ├── Screen.shader ├── Screen.shader.meta ├── SoftLight.shader ├── SoftLight.shader.meta ├── Subtract.shader ├── Subtract.shader.meta ├── VividLight.shader └── VividLight.shader.meta ├── LICENSE ├── README.md └── preview.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/.gitignore -------------------------------------------------------------------------------- /John Lim's Blend Modes/Add.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Add.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Add.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Add.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/CGIncludes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/CGIncludes.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/CGIncludes/PhotoshopBlendModes.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/CGIncludes/PhotoshopBlendModes.cginc -------------------------------------------------------------------------------- /John Lim's Blend Modes/CGIncludes/PhotoshopBlendModes.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/CGIncludes/PhotoshopBlendModes.cginc.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Color.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Color.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Color.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Color.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/ColorBurn.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/ColorBurn.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/ColorBurn.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/ColorBurn.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/ColorDodge.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/ColorDodge.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/ColorDodge.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/ColorDodge.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/DarkerColor.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/DarkerColor.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/DarkerColor.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/DarkerColor.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Difference.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Difference.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Difference.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Difference.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Divide.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Divide.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Divide.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Divide.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Exclusion.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Exclusion.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Exclusion.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Exclusion.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/HardLight.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/HardLight.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/HardLight.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/HardLight.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/HardMix.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/HardMix.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/HardMix.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/HardMix.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Hue.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Hue.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Hue.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Hue.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Lighten.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Lighten.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Lighten.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Lighten.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/LighterColor.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/LighterColor.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/LighterColor.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/LighterColor.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/LinearBurn.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/LinearBurn.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/LinearBurn.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/LinearBurn.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/LinearDodge.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/LinearDodge.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/LinearDodge.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/LinearDodge.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/LinearLight.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/LinearLight.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/LinearLight.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/LinearLight.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Luminosity.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Luminosity.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Luminosity.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Luminosity.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Overlay.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Overlay.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Overlay.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/PinLight.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/PinLight.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/PinLight.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/PinLight.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Saturation.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Saturation.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Saturation.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Saturation.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Screen.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Screen.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Screen.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Screen.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/SoftLight.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/SoftLight.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/SoftLight.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/SoftLight.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/Subtract.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Subtract.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/Subtract.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/Subtract.shader.meta -------------------------------------------------------------------------------- /John Lim's Blend Modes/VividLight.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/VividLight.shader -------------------------------------------------------------------------------- /John Lim's Blend Modes/VividLight.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/John Lim's Blend Modes/VividLight.shader.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/README.md -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penandlim/JL-s-Unity-Blend-Modes/HEAD/preview.png --------------------------------------------------------------------------------