URP Outline Shader - Unity Shader Graph (Tutorial)

Поділитися
Вставка
  • Опубліковано 11 лют 2024
  • In this video I show how to create an inverted hull shader for model outlines using shader graph in Unity 3D for URP.
    #gamedev #unity #unity3d #shadergraph #unitytutorial #unitytutorialforbeginners #unitytutorials

КОМЕНТАРІ • 33

  • @rambii.
    @rambii. 4 місяці тому +1

    Finally a tutorial on how to do hull outlines in shader graph. I've been searching for this for so long. Currently, I am using a hull outline shader that was made out of pure HLSL code, and because I don't know much about HLSL I couldn't expand on it to add other things. Finally, I can now do this in the shader graph. Thank you so much, man!

  • @tyb.c.4332
    @tyb.c.4332 2 місяці тому

    Clear instructions, no dillydallying, great video! Thanks!

  • @_dimitrisbr
    @_dimitrisbr 4 місяці тому +1

    10/10, great tutorial, great shader!

  • @Boysle
    @Boysle 4 місяці тому

    Thank you very much for the video! It helped me a ton!

  • @VidyaStudios
    @VidyaStudios 3 місяці тому

    Dude, best outline shader out there thank you !

  • @jazzyleaf2317
    @jazzyleaf2317 4 місяці тому

    Thank you!!!! This is lifesaving!

  • @a6gitti
    @a6gitti 3 місяці тому

    thanks, really appreciate this tutorial 🙏🙏

  • @MightySuper9
    @MightySuper9 5 місяців тому

    Really helpful, thanks!

  • @thesuitablecommand
    @thesuitablecommand 20 днів тому

    Great tutorial! This seems to be working for spheres, but for other 3d shapes it is misbehaving for me. If I try this with a cube, or any other shape with edges, the edges don't survive the inflation process. The outlining faces are all disconnected from one another. Do you have any idea what I might need to fix?
    Edit - oh, I need to just finish the video. You point this out yourself.

  • @noosetime9423
    @noosetime9423 3 місяці тому

    it happens because they way light is calculated. simple version of it would be dot(normal,lightdir). because a normal is used rounding them essentially calculates light as if it is a rounded shape, making it look strange.

  • @Lodred
    @Lodred 4 місяці тому

    Could you do a tutorial of an Outline Shader by sampling the Depth and Normal maps to have both internal and external?
    Im trying to learn how the URP works to achieve something like that

    • @MichaelsGameLab
      @MichaelsGameLab  4 місяці тому +1

      I think one of my next videos will be on the URP fullscreen shadergraph option and how to do an outline effect with the depth texture.

  • @PatrikBergsten
    @PatrikBergsten 5 місяців тому +2

    For simple geometry with hard edges you can calculate the offset direction instead of using the Normal Vectors directly.
    (Position(Space:World) - Object Position).Normalize
    That will keep the edges of a cube together. It will however not work on more complex shapes since the offset direction will be from the objects pivot point. But a cube or a dodecahedron would be fine.

  • @Pumba_1989
    @Pumba_1989 14 днів тому

    Hi, help me please. Why material color in shader can be pink?

    • @MichaelsGameLab
      @MichaelsGameLab  3 дні тому

      You might not have your render settings configured properly.

  • @Krhey-0
    @Krhey-0 23 дні тому

    Incredible, by chance you don't have a toon?

  • @Hinkel84
    @Hinkel84 4 місяці тому

    Does it work for Unity 2020 aswell? Or just newer versions?

    • @MichaelsGameLab
      @MichaelsGameLab  4 місяці тому

      I think it should work for unity 2020, but I have not tested it in that version.

    • @Hinkel84
      @Hinkel84 4 місяці тому

      ​@@MichaelsGameLab the problem is, unity 2020 shadergraph is not supporting render face... like back or Front.

    • @MichaelsGameLab
      @MichaelsGameLab  4 місяці тому

      Oh, I see. Might need to update then :/

  • @lucutes2936
    @lucutes2936 4 місяці тому

    how do you mix this with a toon shader?

    • @MichaelsGameLab
      @MichaelsGameLab  4 місяці тому

      The toon shader would probably be the base material. The outline material for this method is added in addition to a base material. They would be separate both both added to the mesh renderer, if that makes sense?

  • @biazwilosojati
    @biazwilosojati 3 місяці тому

    It's not working on me, after deal with shader graph the object that I assigned with materials graph doesn't show the outline shader. Anyone can help me?

    • @MichaelsGameLab
      @MichaelsGameLab  3 місяці тому

      Did you follow the video?
      If you did make sure to set an outline thickness for the material.

    • @biazwilosojati
      @biazwilosojati 3 місяці тому

      After watching the whole process making of an outline shader, then I create material from the shader. Even, try to create outline shader 2 times. The object doesn't want to show the outline. I don't know what is the issues...@@MichaelsGameLab

    • @MichaelsGameLab
      @MichaelsGameLab  3 місяці тому

      Can you see it if you remove the main material and only have the outline material assigned?
      You might also need to enable read/write on the model.

    • @biazwilosojati
      @biazwilosojati 3 місяці тому

      Oh well, I will check it back again... Thank you@@MichaelsGameLab

  • @Shadow-gc1em
    @Shadow-gc1em Місяць тому

    No source material?

    • @MichaelsGameLab
      @MichaelsGameLab  Місяць тому

      What do you mean?

    • @Shadow-gc1em
      @Shadow-gc1em Місяць тому

      @@MichaelsGameLab the final shader
      No repository or asset?