• Unity
  • Sprite Shaders for Unity

Receive shadows does now work, I forgot to say!
It only works using pixel lighting and only when you write to depth (which should be turned on when using pixel lighting really anyway).

Hmm that sounds like your sprites normals all face the camera maybe? I should've also said Rim Lighting will only work if you're sprites have normal maps - it bascially fades to a color based how much a pixel is facing away from the camera. A sprite with no normal map will have all of its pixels facing one way - towards the camera so you won't get any rims.
To check its working could you try the shader out on a sphere?

Related Discussions
...

Here, what is happening:
 Loading Image

Yipes that is bizarre! Thats the same settings I tried in the test level and it works fine. Maybe its the diffuse ramp? Shouldnt be though...
Could you create a sphere and add that material to it and see if it rims in the correct way?

Yes, without the difuse ramp, it worked.

I am missing an option to control the rim light distance. Because I can't control how much the rim light will affect the entire object, just the intensity.
 Loading Image

hmm could grab the latest shaders from the first post again? I think I uploaded a version with broken ramped rim lighting before, its certainly working for me with latest:

The rim power should dermine the distance or size of the rims - the lower the rim power the thicker the rims (0 should fill the whole object pretty much). The rim colors alpha then is used to fade the effects strenght (so if the colors alpha is zero the rims will be invisible).

Hm, I don't know maybe is my normalmap is not good enough, because with my caracter is a little strange, the borders aren't white.
 Loading Image

And maybe I could use rim without ramp even I use the light with ramp? Is it possible?

What Fog does?


04 Aug 2016, 07:06


I put a 3D sphere and not happened with Rim Light.

It's a 2D rim light. It requires a normal map and a flat mesh. It shouldn't work on a 3D sphere, theoretically.

Awesome Todd! No wonder Mitch stopped working on Magelight (Sorry Mitch 😛 )

Hope you're going to get compensation in the form of the asset store etc. You put in a ton of work and saved alot of people alot of time! Can't wait to check this out when I get home 🙂

BTW what tools are you guys using for your .gif captures? Everything I'm finding can't give me smooth 30\60fps results. 🙁

I use gifcam. It does 30fps (actually 33) and 50fps.

The truth actually is that gifs store frame DELAYS, not framerates. And browsers cap at 0.02 sec.
Check out my post on technical limitations of gifs to learn about why you might not get results you expect:
http://pharanpostsartndevtrivia.tumblr.com/post/126581964275/how-is-an-animated-gifs-time-delay-between

Also check this gif set: http://imgur.com/a/DwzqK

Ooh! Great !! Thanks alot Pharan 🙂

@MichelVictor Hey I was using Rim Lighting in vertex lighting mode and noticed there was a couple of bugs meaning the normals won't being generated correctly, which might of caused your weirdness! I've fixed that and uploaded the shaders to the first post 🙂

Plus nice, was gonna ask you what you used to make gifs too! They show off lighting effects so much better than static images.

This looks really cool! I'd love to check it out but I'm getting an error when I try to import it into Unity (5.3.5):

Shader error in 'Game/Sprite Pixel Lit': failed to open source file: 'SpritePixelLighting.cginc' at line 61 (on d3d11)

Compiling Vertex program with DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _ALPHAPREMULTIPLY_ON _ALPHA_CLIP
Platform defines: UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING

The inspector doesn't show any debug info for the .cginc files so I can't tell what's wrong... any ideas?

Again brilliant work Todd! Thanks for sharing. The results are quite nice.

Is there a way to control the color of the shadow? Seems to be black at the moment. Ambient from the scene doesn't seem to affect it as well (You can see its purple in the bg) Or at least to the extent of my limited knowledge of Unity I don't know how to change the black shadows to another color.

How is everyone dealing with the seams? (Where two image pieces come together.) I've got ugly seams at my jaws and elbows. 🙁

 Loading Image

 Loading Image

9 dias depois

@ToddRivers Hey Todd, do you have a quick fix to the issue of "opacity animation"? Whenever I try to use the Normals Shader (both with vertex or pixel lit) I get this weird issue where anytime the sprite fades the color gets darker as it fades away - which is very unattractive as the opacity animation is supposed to blend/transition between sprites. Oh and I'm a bit confused about all the "Tangent Solver" and making modifications to the Spine scripts... do we still have to do that? Or is it only for those who use the "calculate normals" function?

You don't need to modify the Spine-Unity runtime code anymore. The tangent solver is now built-in. You just need to check the checkbox. The latest information is in the first post. All other posts here may not represent how the latest version works.

@[excluído]
Those seams are caused by whatever is generating your normal maps. It needs to be fixed there. ToddRivers's shaders are only using what normals you give it. If the normals have seams, you'll get seams on the shadows.

@ToddRivers . In case you wanted to polish up your tool some more. I ran into this bug involving ambient occlusion. I tried messing around with the settings, but nothing seemed to do the trick. You can check out the screenshots here. Hope it helps. 🙂

@Pharan. Thanks for the explanation. I'll give it a try. :party:

 Loading Image

ToddRivers escreveu

Plus nice, was gonna ask you what you used to make gifs too! They show off lighting effects so much better than static images.

Well I think they way I did is not the best one haha.

I recorded the screen and imported to After Effects, cut the part I wanted to make a perfect loop, imported to photoshop and made a gif from there, lots of work haha.

@ToddRivers Hey, your shader is working pretty well for me. Below is an animation I did with the VertexLit shader which was later edited in Photoshop to add emission from the sword and a few minor tweaks (more on that below).

I have a few requests:

-An Emissive map. From what I can tell, it should be fairly simple to implement.

-Support for Opacity/Fade animation. As @RtFishers mentioned above, I have a similar problem with my animations. As my character's head turns to face the camera there is a sprite for his nose that is supposed to fade away as a new sprite (the "nose shadow") fades in. But I have observed that anytime I try to use opacity in my animations the shader seems to think it needs to DARKEN the sprite instead of just make it fade away (I had to edit the dark nose out in Photoshop). Now I'm guessing this could be a complicated issue, but I hope you can find a solution around it (otherwise I have limited options for the "3D head turn").

-Self-Shadowed Sprites. Now this could just be labelled wishful thinking, but if anyone has used Finn Morgan's SpriteLamp shader they will be familiar with the option for you to include a "Depth Map" into your material which the shader can then read as height and use some sort of increment function to make the sprite cast shadows on itself. But this sounds like a harder feature to add and I don't mind if it's not implemented anytime soon.

-Also, is it possible to enable the VertexLit shader to be able to receive shadows? I can't really use PixelLit as most of my characters have pieces that overlap everywhere.

Hi, I'm currently testing the shaders in the project my team's working on and so far I like them a lot.

I would also like to join LoneWarrior in request to add an emission channel to the shader.

16 dias depois

Hey guys! Sorry for going missing, I somehow didn't see the responses.

Firstly I've fixed some pesky typo's in the shaders where I wrote .rbg instead or .rgb grr
Anyways!

@AlaNintendo so first up you should never use mesh normals with rim lighting on spine meshes. Actually you shouldn't really use mesh normals at all on spine animations for lighting in general. The normals will just point outwards from the mesh and make it look like a flat bit of paper (which in essenese is what a sprite is!).
By using a shader normal the shaders will treat it so the normal is constant in camera space meaning the normal is always facing into the camera even when the sprite is not. This might sound weird but it ends up making the lighting look a lot more 3d and realistic for sprites.

For rim lighting however you need a range of normals for it to work (it needs to find the 'rims' of places where the normals change dramatically).
For this on Spine Animations you need to use a normal map. I use this which works pretty nicely: https://www.codeandweb.com/spriteilluminator

For your second image I've found a bug with the way I apply fog, I need to lerp the fog color to clear depending on the pixels alpha, I've now fixed this and it'll be in the latest shaders 🙂

What exactly is going on with ambient occlusion in the last pic? Is this a Screen Space Ambient Occlusion effect? Or something else?

@LoneWarrior I love that art style! Emission would be hella cool and something I'd love to have in my game so is prob next on the list 🙂
I'm curious as to whats going on with the alpha fade, will look into that too.

Self shadowed sprite would be very cool but very hard to implement I think. Decent normal maps can help give that illusion but actual shadows a prob going to be too hard for now.

Shadows for vertext lighting is something I looked into very briefly and think its possible just harder than pixel lit shadows - you can use pixel lighting with hard alphas though, the animation in you gif should work pretty well with that. It's more accurate than vertex lighting and supports full shadows and as long as your sprites got solid edges work fine (to get it to work turn on write to depth and play around with the Depth Alpha Cutoff).

I use pixel lighting in most place although I've got one character thats furry and pixel lighting doesnt work with this as furr needs full alpha blending to look right so for that character I use vertex lighting. Will look into shadows for that too!


16 Sep 2016, 12:31


Ok emission was nice and easy, it's in the latest shaders on the front page 🙂


16 Sep 2016, 16:45


@RtFishers I had a look at the alpha fade bug and think I've fixed it for vertex lighting as best I can , however you'll always get the fade to black problem when using pixel lighting.
Because pixel shading is done over multiple passes it has to use depth testing to stop drawing lit areas over the top of each other.
Because it writes to depth it blocks lighting happening on areas beneath the top most sprite. As this top sprite fades out you start seeing the unlit sprite behind it, unfortunately theres no way around this.
Unity standard shader does not allow for alpha fading in "Cutout" mode for this reason.
Anyhow if you're fading sprite in and out OR using any areas with partial alpha then I recommend using vertex lighting 🙂

@LoneWarrior I had a look into recieving shadows in vertext lighting and alas I don't think it's possible without some crazy hacks like I did to get normal maps working in vertex mode but I don't think theres enough texture coord channels to support both at the same time!
Unity's own docs say vertex lighting does not support shadows here (although it also says it doesnt support normal maps and managed to get that one to work 😉 )
https://docs.unity3d.com/Manual/RenderTech-VertexLit.html

Anyhow casting shadows still works fine in vertext mode, if you really want a character to recieve shadows I recommend authoring it without any faded edges and then using pixel lighting with write to depth enabled 🙂