Outline Post Process in Unity Shader Graph (URP)

Поделиться
HTML-код
  • Опубликовано: 21 окт 2024

Комментарии • 128

  • @mindscope404
    @mindscope404 Год назад +55

    just followed the whole tutorial in play mode. i love unity

    • @danielilett
      @danielilett  Год назад +6

      😭

    • @MrKuros
      @MrKuros Год назад +9

      Change the Unity Editor color when in playmode. Saved me a bunch of times.

    • @FOLDIK_UA
      @FOLDIK_UA 8 месяцев назад

      😂

    • @Rdp0300
      @Rdp0300 5 месяцев назад

      HAHAHAH

  • @renegadeloser777
    @renegadeloser777 6 месяцев назад +13

    If anyone can't see the 'Pass Index' dropdown like I couldn't, you can click the three dots on the header for the Full Screen Pass Renderer Feature (the header where you should see the dropdown) and click 'Show Additional Properties".

    • @EZduzziteh
      @EZduzziteh 6 месяцев назад +2

      helped me out, thanks!

  • @orpheuscreativeco9236
    @orpheuscreativeco9236 5 месяцев назад +1

    Looks great! I can't wait to implement this in my game 🙌✨ Thanks for sharing!

  • @madddmunky
    @madddmunky 6 месяцев назад +2

    for those who facing with black screen issue, make sure that you choose the outline material, not the shader graph itself

  • @dasdaone9753
    @dasdaone9753 Год назад +1

    Best outline shader that's i've ever seen on youtube

  • @sivorifrancisco5055
    @sivorifrancisco5055 6 месяцев назад +1

    Ty so much, im starting to practice shaders and not only your shader, your explication it´s good for my.

  • @matthizzone
    @matthizzone 10 месяцев назад

    Thank you so much Daniel, this is exactly what I needed to get down and dirty with custom post processing in URP

  • @AlexandreCoulonOldChannel
    @AlexandreCoulonOldChannel Год назад +2

    That is awesome Daniel, and made so easy by your explanations ! Thanks. It feel like a good tool to get creative with URP

  • @Im_Trustworthy
    @Im_Trustworthy 6 месяцев назад +2

    This is the best tutorial I have done on this, and I cant find any other videos to help, and all of it is in black and white, help please.

  • @davdev793
    @davdev793 Год назад +1

    I love unity in many areas, but not when we talk shaders , rendering and post process. I've learned to do this and cell shading on unreal wich I feel its way more intuitive and easier to do than it is on unity but I'm really glad it getting easier to do and understand on unity that is my favored engine. Just by staying on shader graph only is a big plus. I may try diving on those waters again . Thanks for sharing!

  • @dominiauk
    @dominiauk Год назад +1

    Great video, quality as usual. Thanks for this.

  • @subhradipmajumder4204
    @subhradipmajumder4204 Год назад +1

    I am realy looking forward for your videos thanks for sharing your knowladge with us :)

  • @Boysle
    @Boysle 2 месяца назад +1

    Great video! Thank you so much. I had a question though, is there a way to put this effect on specific objects?

  • @mitchell9687
    @mitchell9687 Год назад +6

    Great video, could you tell us how to control the thickness and also how to only effect certain layers?

    • @trashcaster
      @trashcaster Год назад +2

      Thickness likely can be achieved by sampling larger distance of pixels (multiply +/-1 by thickness). As far as per-layer effect, you cannot do that with this setup. You would have to use the older way of doing outlines to select layers (until Unity adds the option to filter by layers with this configuration)

    • @ThisIsHenn
      @ThisIsHenn Год назад

      You could add an Emission node to make the outline more noticable. Plug in the Overlay? into the color of the emission node and turn up the intensity of the node to your liking. Do not forget to enable bloom in your settings.

    • @Le_Mur
      @Le_Mur Год назад

      I though to blur the outline texture then step it. I'll test it.

    • @FlashBash64
      @FlashBash64 Год назад

      you can change the thickness if you make an add node after the first split node. Its important you use very small values for it though

  • @momosietube
    @momosietube Год назад

    The best shader out here! Thanks, man!

  • @tharsis
    @tharsis Год назад +9

    I had gone with a different method in the past, writing my own renderer feature and rigging up a shader graph material that utilized the depth buffer instead. This graph you have now though looks quite a bit nicer than mine, and the fact you don't need to invent a new renderer feature is a big plus. Might just have to do a bit of refactoring ;)

    • @danielilett
      @danielilett  Год назад +4

      Yeah, there are a lot of ways you could have done an effect like this. I'm glad that this approach means you don't need to actually write a renderer feature, because I feel that's a big obstacle to a lot of people.

  • @noobissk3001
    @noobissk3001 Год назад

    AWESOME tutorial, Thank you so much!

  • @dreamcatforgotten8435
    @dreamcatforgotten8435 Год назад +2

    I wonder if they could give us the option to choose a Sampler with the URP Sample Buffer.
    It seems like it would allow for a much more feathered/anti-aliased result, smoothing the Outlines more during the process.
    That said, I suppose you could simply try resizing the Render Texture scale to be a bit higher and/or use x8 AA settings to counteract some of the aliasing of the Outlines... or use a Sobel algorithm as opposed to the Robert's Cross approach to get a more refined result, at the cost of performance.

  • @mehmedcavas3069
    @mehmedcavas3069 Год назад +4

    finally was researching this for the last 3-4 days and they brought up the exact thing which I wanted. a bit creepy :D is it possible to get the same effect on urp 2021 lts? would be awesome to see a tutorial for that

    • @accountdisbanded
      @accountdisbanded Год назад +1

      Fullscreen Shader and Sample Buffer came out in 2022.2

  • @kaixian17
    @kaixian17 6 месяцев назад +1

    Hey nice video man! Just only one thing. Is there a way to add depth to this shader? I tried replacing nodes with the scene depth one (which barely works, in many spots the shader just does not work), but i cannot get a fully working result

  • @AmitNetanel
    @AmitNetanel Год назад +2

    Great little video!
    Do you expect this to be performant (meaning viable) on mobile devices?

    • @danielilett
      @danielilett  Год назад +2

      I guess it depends on whether you mean high-end or low-end mobile but it's probably decently efficient. You end up doing 9 samples per pixel, but other edge detection techniques sometimes do more than that. You could remove either the color-based or normal-based nodes to bring it down to 5 samples if you want to improve performance at the expense of the effect looking a bit worse. Shader Graph sometimes has a bit of overhead compared to hand-writing an HLSL shader but it's probably not that much.

  • @antifreeze88
    @antifreeze88 3 месяца назад

    Hello! Great tutorial. Maybe you can give some advice how to add thickness and noise to outline?)

  • @theoddones9489
    @theoddones9489 3 месяца назад +1

    Having a problem where everything is black in scene, I looked at some other comments and changed blend modes, and all leave the scene black except additive, which just shows me the scene as normal without outline, anyone got a fix?

  • @NewlandInteractive
    @NewlandInteractive 3 месяца назад +1

    If anyone has a problem with the screen going black. Change the blend mode in the graph settings to premultiply!

    • @Boysle
      @Boysle 2 месяца назад +2

      Thank you so much! This actually helped me after 2 days of trying to solve my issue! You are a lifesaver

  • @TheFerruccio
    @TheFerruccio 26 дней назад

    This is not working for me. I am only getting this effect on the top left of the viewport. Along a diagonal marks the delineation between the shader working and not working. What should I check which might be causing this problem? I’ve also gone through the same tutorial on your website and the same effect resulted.
    (EDIT) the instruction to use Blit (1) under the full screen pass renderer feature Pass was incorrect in my case. The “only works above the diagonal” goes away if I switch the pass to DrawProcedural (0). I do not yet know why this is.

  • @andydom729
    @andydom729 Год назад +2

    Great Video, thanks for this. One issue I've found with trying this is that the outlines seem to ignore the z order. So for example if I have a UI health bar (in world space etc) say above a characters head then the outline from another character in the background can be seen through the green line, making it almost unreadable. Do you know if there is a way to resolve that? Thanks again for a really informative video.

  • @napstablook8858
    @napstablook8858 4 месяца назад +3

    got a problem where the outline only applies on half the screen in blit mode (also the outline won't appear in the game view), any idea as to why it happens? pls I am desperate

    • @TheFerruccio
      @TheFerruccio 25 дней назад +1

      One possibility is that the pass index for the renderer feature needs to be DrawProcedural (0) instead of Blit (1)

  • @JuhaniHoi
    @JuhaniHoi Месяц назад

    Thanks!

  • @dylan_kwok
    @dylan_kwok Год назад +2

    Very cool! Is there a way though to control the thickness of the resulting outline?

    • @matthiaspeene5631
      @matthiaspeene5631 Год назад

      Am wondering the same thing. Let me know if you've figured it out.

  • @REGNiZZ
    @REGNiZZ Год назад +2

    2022 LTS is taking soo long, but i hope its gonna be good.

    • @danielilett
      @danielilett  Год назад +3

      I have drawn several pentagrams on my floor to try and summon 2022 LTS but it hasn't worked yet. Fingers crossed it's soon!

    • @REGNiZZ
      @REGNiZZ Год назад

      @@danielilett did u place 22 candles or 23?

  • @DrBergologo
    @DrBergologo Год назад

    Hey I've just started unity so mind my possibly silly question. After the screen node you have the divide node followed by a split node. Given that the output of the divide is a vector2, can't you simply take the 2 outputs from that same divide node and plug them into their corresponding vector2 node?
    This was a super neat video and made me understand everything quite well. Thanks a ton.

  • @nights312312
    @nights312312 7 дней назад

    For some reason i cant get this to work in HDRP with the HD Sample Buffer

  • @melcara5099
    @melcara5099 Год назад +3

    Is there are way to exclude objects from the outline?

    • @pauliusginiotis385
      @pauliusginiotis385 5 месяцев назад

      You would have to render outlined objects on a different camera. You can have per-camera renderer assets, so if you have two cameras, one would have the renderer feature enabled, the other one wouldn't.
      Though make sure they are renderered in the correct order.

  • @PRodi_
    @PRodi_ Год назад +2

    Great video - btw. how performant is this shader and does it work with VR?

    • @danielilett
      @danielilett  Год назад +1

      It's decently performant, in the ballpark of most edge detection and outline techniques. I don't have a VR headset so unfortunately I can't test that, but I have heard that Unity is trying to improve VR support with code-based Renderer Feature effects. Basically they're deprecating some Blit methods in favour of the new Core Blitter API which is more VR-friendly (forum.unity.com/threads/how-to-blit-in-urp-documentation-and-or-a-unity-blog-post-on-what-every-blit-function-does.1211508/#post-7735527). I assume Fullscreen Shader Graph uses the same underlying API so maybe VR support for effects is a given.

    • @PRodi_
      @PRodi_ Год назад

      @@danielilett Thank you for your in depth response

    • @Reikanable
      @Reikanable 4 месяца назад +2

      For your information, it works great in VR. Test with a Vive Pro and a Meta Quest 3

    • @Boysle
      @Boysle 2 месяца назад +1

      @@Reikanable I have applied and it was working perfectly in Scene and Game mode. However, when I get the build, the outlines for some reason shifts around and misplaces as well as turning off the passthrough. I have been trying to debug it but could not find the issue. I am basically using Meta's All-in-One SDK and everything that comes with it.

  • @AlessandroSalvati
    @AlessandroSalvati Год назад +2

    Hi!
    I was hoping to eliminate the jagged edges by using TAA, but instead TAA makes it even worse!
    To be precise, it makes all the edges jitter - a lot. Probably as a result of how TAA is created.
    I tried to use SmoothStep instead of Step, but didn't change much.
    Any suggestion on how to make this (and I suppose other shaders you may have created) TAA friendly?

  • @aeroniix1489
    @aeroniix1489 3 месяца назад

    Can I do this in Lit Shader Graph? The URP Sample Buffer doesn't seem like working in Lit Shader Graph :(

  • @enkhbatenkhjargal9447
    @enkhbatenkhjargal9447 Год назад

    That is nice. Does it work on mobile and Vulkan graphics too? Or does it need to be higher than OpenGL ES 3.0?" 😄

  • @AlexTheGamer69
    @AlexTheGamer69 Год назад +4

    Any idea how this can be applied only to certain layers?

    • @dreisemesterzumerfolgdsze3453
      @dreisemesterzumerfolgdsze3453 Год назад +1

      Not to certain layers, but certain Gameobjects. Set Material in Graph Settings to StackLit. Plug the "Overlay?" into an Add node. Add a SampleTexture 2D plug it into the add node. Assign your texture in the Texture input of the sample texture node. Works in HDRP 2022.2.20

  • @RivenbladeS
    @RivenbladeS 8 месяцев назад

    Great. How to make the outline thicker

  • @SubzeroBlack68
    @SubzeroBlack68 4 месяца назад

    I am COMPLETELY NEW to shaders and post processing. But I was wondering if there's a way to get this effect different per character. Like some characters having different outline colors and thickness.

  • @gabrielpereira6930
    @gabrielpereira6930 Год назад +1

    Is it possible to convert this effect per object (material/object specific) instead of being a post process effect?

  • @zichaoye1274
    @zichaoye1274 Год назад

    great video! is it possible to get scene depth? depth is very important for effects like depthfog

  • @helearme3744
    @helearme3744 4 месяца назад +2

    My entire scene goes black and white when I put the material into the High Fidelity Renderer. None of the object textures appear, it's all white with black outlines

    • @nazarenabernal6251
      @nazarenabernal6251 3 месяца назад

      Same here, did you ever manage to fix it?

    • @helearme3744
      @helearme3744 3 месяца назад +1

      @@nazarenabernal6251 Yes. You go to Graph Settings and change blend mode to multiply. Sorry it took me a bit to respond

    • @nazarenabernal6251
      @nazarenabernal6251 3 месяца назад

      @@helearme3744 thank you!!

  • @ilovebirds4080
    @ilovebirds4080 3 месяца назад

    I exactly followed your tutorial to the end and it didn't work, was so frustrated and went to a other tutorial, the same results, the URP Sample Buffer for some reason gives me black backgrounds, but then I found your project files on your description, loaded it out from the latest unity version and seems to work just fine ^_^, so that means I kinda messed up right?, I feel dumb, and yea I'm dumb xD

  • @Le_Mur
    @Le_Mur Год назад

    I've got the impression you only get difference of up, down, right and left pixels, but not the left up, right up, right down and left down. Am I right or do I get it wrong ?

  • @phrizee
    @phrizee Год назад

    Great tutorial, Bro! Thanx a lot, but I have one issue with this graph - when "Overlay ?" is off there is black screen under the outline (and when "Overlay ?" is on you can actually see 3D with ouulines on it).

    • @Am3ricium
      @Am3ricium Год назад +1

      thats because everything that is not outline is equal to 0 in the shader, and outline is white (1) multiplied by color. Thats how this shader is intended - you either see your scene with outlines, or black screen with outlines, controlled by the keyword.

  • @skloutown852
    @skloutown852 Год назад

    is possible to make a bloom post processing shader on a specific object layer with shader graph and 2022.3lts?

  • @digibass1799
    @digibass1799 Год назад +1

    hi, I have this issue with black and white screen after adding the outlines. Do not know why

    • @helearme3744
      @helearme3744 4 месяца назад

      Hey, you've probably fixed it by now, but I was having the same issue and I found the solution, so I'll leave it just in case. You go to Graph Settings and change blend mode to multiply

  • @YamiGameDev
    @YamiGameDev 8 месяцев назад

    It works on the half top left side of the display

    • @TheFerruccio
      @TheFerruccio 25 дней назад

      The most subtle comment implying that something is wrong! I had the same problem as you, and I fixed it by changing the pass index for the renderer feature to DrawProcedural (0) instead of Blit (1)

  • @fastest_mia
    @fastest_mia 11 месяцев назад +1

    Hey, I've got an issue where only the colour edge detection seems to be working but it's not detecting the normal edges at all. Any pointer on why this might be happening? I did exactly as you did in the shadergraph. I set up the edge detection correctly as the colour outlines work great. It's just the normals outlines that won't show at all
    edit:
    I just loaded up the sample project from the github in the description and it does work even in the newer version of unity I'm using. (2022.3.9). Which means I must have missed something, whether in the shader or the urp settings.
    edit2:
    So I've downloaded the example project linked in the description and been working in that instead since it has the correct settings. However I've been writing custom hlsl urp shaders and now those don't seem to have outlines even though the default materials now do. They're unlit urp shaders so I assume that is part of the issue?

    • @AdrianDLGA
      @AdrianDLGA 6 месяцев назад +1

      Im having the exact same problem, did you figure out what it was?

    • @fastest_mia
      @fastest_mia 6 месяцев назад +1

      @@AdrianDLGA its because I was doing custom lighting in an unlit cgprogram shader. It wasn't providing the normal information to the camers. You need to add a "depth normal pass" to the shader yourself for it to pass that information to the camera

    • @AdrianDLGA
      @AdrianDLGA 6 месяцев назад

      @@fastest_mia Oh I see, but where you able to do it in a different project or you just kept using the git hub one? 😅

    • @fastest_mia
      @fastest_mia 6 месяцев назад +1

      @@AdrianDLGA after copying the sample project files it did seem to work yea

    • @AdrianDLGA
      @AdrianDLGA 6 месяцев назад +1

      @@fastest_mia thank you!

  • @SantanaOnYoutube
    @SantanaOnYoutube 6 месяцев назад +1

    Is there a way so separate this post process effect in a separate layer? For use in specific objects for example?

    • @danielilett
      @danielilett  6 месяцев назад +1

      Not easily. Or at least, I'm not sure how you would with this method, or if it's even possible. That's something I definitely want to look into though, because it would be very useful to apply this to specific objects.

    • @SantanaOnYoutube
      @SantanaOnYoutube 6 месяцев назад

      @@danielilett I wanted to separate it for separate characthers. One of the things I found was by making renderer features via C# code an set it up there, But I still need to study the renderer feature documentation though

  • @quantum_leap786
    @quantum_leap786 Год назад

    That looks good !
    I dont have the Full Screen pass renderer feature available. Any idea why?

    • @masteryoyo1510
      @masteryoyo1510 Год назад

      same thing wouldn’t appear for me, because we have older versions

  • @BrandonTwede
    @BrandonTwede 6 месяцев назад

    Is it possible to change the outline thickness when using this method?

  • @dbp_pc3500
    @dbp_pc3500 4 месяца назад

    Is it possible to use this post process on a specific layer only?

  • @xxkillgamerxx8579
    @xxkillgamerxx8579 Год назад

    How can I make the lines show through the models?

  • @rohanpatel2608
    @rohanpatel2608 Год назад

    Hi Daniel, Do you know if we can somehow add a threshold so that if the object is far outlines are not drawn, as right now far away objects turns all back because of it

    • @789blablajaja
      @789blablajaja Год назад

      The shader is missing the depth buffer. Meaning you would also not have outlines, when another object is behind an object, and the normals + colors are matching.
      So first you would need to copy paste the setup again for depth buffer.
      Then, to get rid of the outlines far from the camera, add a smoothstep on the depth value, use a new threshold for that too, and multiply the output with the overlay alpha. Done.

  • @mochou_p
    @mochou_p Год назад +1

    2022 LTS out since yesterday, but 7:10 there is no pass index, still works tho

    • @danielilett
      @danielilett  Год назад +1

      Ah good spot. I figured there would be minor changes between 2022.2 and 2022.3 LTS, but good to know it still works.

    • @atanki5682
      @atanki5682 Год назад

      @@danielilett Hey, man! This works great, thank you for sharing. But I've got a question, how could I increase the outline thickness?

    • @scoop2446
      @scoop2446 6 месяцев назад +1

      i'm a bit late to this, but the pass index is still there... click the 3 dots on the full screen pass renderer feature in the inspector in the top right corner and activate "show additional properties". then a "pass" option will appear, which essentially is the pass index

  • @NTDev4
    @NTDev4 4 месяца назад

    Anyone tried this in Unity 6? It's all working except the effect is only happening to one half (triangle) of the screen.

    • @NTDev4
      @NTDev4 4 месяца назад

      Figured it out. The render feature "Pass" must be kept at "DrawProcedural" now.

  • @umtbmt2395
    @umtbmt2395 3 месяца назад

    using this shader on HighFidelity give me fps drop from 140 to 15~40, switching to balanced works perfect,

  • @vinhnguyen-o5z
    @vinhnguyen-o5z 6 месяцев назад +1

    wait does this mean this outline will affect the whole scene?

    • @danielilett
      @danielilett  6 месяцев назад +1

      Yeah, this is a post process effect which doesn't attempt to filter out specific objects in the scene. It just gets applied to the whole thing. It'll work great for scenes with distinct-looking objects, but maybe not quite as well for very busy scenes with similar coloured objects overlapping.

  • @simleGuy
    @simleGuy 10 месяцев назад

    Hmm. Is there a way to make outlines thinner depend on the distance between camera and outline?

    • @spaget_
      @spaget_ 4 месяца назад

      hey did you ever figure out a way? stuck on the same problem 😅

  • @foundtexas5424
    @foundtexas5424 Год назад

    This is only with the experimental features in the 2022 versions right?

    • @danielilett
      @danielilett  Год назад

      Yeah! It would have been great if it were backported to earlier Unity versions, but it's only in 2022 and upwards.

  • @luisenriquecendejassosa6805
    @luisenriquecendejassosa6805 4 месяца назад +1

    ufff 10/10

  • @daleodorito
    @daleodorito 9 месяцев назад

    Ey, maybe I am absolutely fucking dumb; but for some reason I did all the steps and is only... applying to half of the screen? Like a diagonal slice of it, the upper part to be precise. Any idea why this may happen? I am pretty sure I did all the steps right, but this just seem like I am only taking a sample of half the screen to apply the shader to and I don't know why. I have tried conecting the vector2 node that is conected to the screen node directly to the final output of the shaderGraph (to see if I somehow failed at applying the math nodes) and still only works for half the screen; it shows a yellow triangle blocking the top and left part of the screen in both the game and scene views.
    Could it be the renderer? Or it is for sure something wrong with the shaderGraph?

    •  9 месяцев назад +1

      Hey, according to the documentation:
      "This error can happen when you use a full-screen shader with a custom pass C# script that uses the Blit() function, and you haven’t selected the Blit shader pass in the Inspector window or in a script.
      To fix this error:
      In a full-screen custom pass, set the Pass Name property to Blit.
      In a post processing script, set the Blit pass to 0. For instructions, see Set the Blit pass in a C# script."
      I hope it helps.

    • @daleodorito
      @daleodorito 9 месяцев назад +1

      @I eventually got it working, it seems that just using default instead of Bit in the renderer dropdown works just fine.
      Thx tho. :D

  • @qin6409
    @qin6409 Год назад

    Can’t believe post processing can be managed by shader graphic, actually just modify the last frame of the game, shader node post processing did make scenes

  • @chalobeats8971
    @chalobeats8971 Год назад

    How can you accomplish this effect with the depth as opposed to normals and color?

    • @danielilett
      @danielilett  Год назад

      I think you can still use the Scene Depth node in Fullscreen graphs to get depth information, then you do the same process of calculating the difference in depth between adjacent pixels. Just note that there's a "Depth Texture" option on the URP Asset (in the Assets/Settings folder) that needs to be ticked to generate the depth texture.

    • @chalobeats8971
      @chalobeats8971 Год назад

      @@danielilett Thank you very much for this info! I actually managed to get it working haha. I'm now wondering if it's possible to get a normal based outline shader that is material/object specific, as opposed to a post processing image effect. I don't want everything in the scene to have normals, so I've realized either the render feature needs to work with only certain layers, or the effect needs to be object specific. Unfortunately the URP sample buffer doesn't seem to do much unless it is on a fullscreen material, so I'll have to find a way to use the world normals instead. If you have any tips that would be much appreciated. Thanks again for your videos!

  • @thedavinci1414
    @thedavinci1414 7 месяцев назад

    I have follow exact steps but I am getting outlines with black white screen. Anyone had this problem?

    • @erikm.hasenknopf2960
      @erikm.hasenknopf2960 6 месяцев назад

      I have the exact same problem. did you find a solution? :D

    • @kriztov
      @kriztov 5 месяцев назад

      @@erikm.hasenknopf2960 i have the same issue, did you guys find an answer?

    • @grufendrot7076
      @grufendrot7076 4 месяца назад

      ​@@kriztov ​ @erikm.hasenknopf2960 idk if you still need this but go inside the shader graph and set the blend mode to additive

  • @MaNameOtis
    @MaNameOtis Год назад

    Is there a way to change the outline thickness ?

    • @atanki5682
      @atanki5682 Год назад

      that's what i've been trying to do, have you found any way?

    • @MaNameOtis
      @MaNameOtis Год назад

      @@atanki5682 yeah kinda, I used the overlay camera method. You have to make a new layer, that’s going to be the layer which the lines are not rendered and this layer should be ticked in the culling mask of the overlay camera.

    • @atanki5682
      @atanki5682 Год назад

      @@MaNameOtis I'm not sure I understand.. can you please elaborate further?

  • @fokozuynen2048
    @fokozuynen2048 9 месяцев назад

    i test it and with MSSA is not the best .

  • @coolpuppykid1455
    @coolpuppykid1455 4 месяца назад

    i ran into a very funny glitch where the entire editor including ui gets edge detected idk why

  • @creative.outlet
    @creative.outlet 5 месяцев назад

    I tried applying it form HDRP but I failed :( Would be great if you could translate it into HDRP. There are missing things in HDRP like the blit, and other odd things.

    • @Ignaciodev
      @Ignaciodev Месяц назад

      hey man did you figure out how to do it with hdrp?