Stylised shader

Hi i new in unity and manualy shader programming (before i workin on visual node based system in ue4) and i need help how to write nice looking stylised shader something like this ( https://www.iamag.co/features/itsart/wp-content/uploads/2015/12/Overwatch-6.jpg) for my project. I hope for fast answer thanx for any help and tips.

You don’t get a look like that simply by adding a “stylized shader”. You have to use a combination of special effects and a series of shaders to go along with this. Unity 5.4 is supposed to have some features to make stylized looks easier to implement, and they have a good video of a scene showing one effect added at a time to show the transition from a normal-looking scene to a stylized scene.

So really, you just need to find the right combination of effects for your game. To get the look in the screenshot you gave, they had a good mix of 2D and 3D, vibrant and contrasting colors, lots of warm, bright colors in the foreground, cooler gentler colors with less detail in the background. As far as screen filters, they’ve got bright specular with subtle bloom, uniform blur, blurring of objects that aren’t in focus, etc. My point is that a LOT goes into making those looks, not just a simple shader.

A shader is per object/material, so there’s no clear reference as to which look you are going for in relation to this image.

Overwatch appears to use a fairly realistic shading model, not far off from Unity’s standard shader, though with additional shaders for skin and hair that Unity doesn’t ship with. Their style comes almost purely from the art itself.

OK thanks for all answers. I have another question about shaders and post processing. How to use and write custom post process on Unity Free? I need write atmospheric scattering and volumetric fog and lights for my project. You have tutorials how to create this? And how shading model used in unity?

Post processing is generally done with rendertextures (can be done otherwise, but is extremely power intensive), which requires Pro unless you have Unity 5 or above.