9
2011
Black light shader (fake shadow)
My first shader test. I know there is already blob shadow, using “projector”, but wanted to try editing some shader examples. You set this shader to the object you want to receive black light from the spotlight.
Instructions:
Get the original code for the shader: Simple Specular
http://unity3d.com/support/documentation/Components/SL-SurfaceShaderLightingExamples.html
Then modify just 1 line,
find:
c.rgb = (s.Albedo * _LightColor0.rgb * diff + _LightColor0.rgb * spec) * (atten * 2);
Replace (or edit the line) with this:
c.rgb = (s.Albedo * _LightColor0.rgb) * ((1-atten*(_LightColor0.a*2)*1.5));
What it does: Attenuation is reversed “1-atten” and the black color strength is taken from “_LightColor0.a”, ie. spotlight Alpha setting.
Related Posts
1 Comment + Add Comment
Leave a comment
Recent posts
- Favorites in PackageManager
- LudumDare59 : Signal
- Unity Editor: Tree Generator
- Leaf/Foliage Generator Tools (Runs in Browser)
- Testing Unity AI Beta
- Ways to Support UnityCoder Development
- Using UI Slider to Create 5-Star Rating Element
- Game Music Library For Unity (editor plugin)
- Fontastic : Easily Test Fonts in Unity Editor!
- GeoTiff Importer & Terrain Generator for Unity
- Create Baked DropShadow for UI images
- .JP2 Ortho Image Converter to PNG/JPG/TIFF
Recent Comments
- on Mesh Exploder (sources)
- on Sprite Sheet Flip Book Shader
- on Sprite Sheet Flip Book Shader
- on [Asset Store] PolygonCollider2D Optimizer
- on Trajectory Test Scene 2.0
- on Vector3 maths for dummies!
- on UnityHub 3.6.0: Remove Version Control & Cloud Dashboard columns
- on Using RenderDoc with Unity (graphics debugger)
Coin:
CUgDSbRqFcAumDSAcdKDvuXsw26VdkJe8C8WGUQHBAGS
An article by













I think a lot of people have been looking for something like this. I’m going to try it out. I hope it works with cookies and only darkens on side of an object unlike the projector.