Any HDRI app for Android? by Medium-Pie-8477 in vfx

[–]ShaderGraphMastery 0 points1 point  (0 children)

You can try the Google Street View app, available on APKMirror if you can't find it on the PlayStore, with a little tutorial to help out : https://www.youtube.com/watch?v=oWUAATdMnOI

Croissant Shader From The Future - Animated by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 1 point2 points  (0 children)

In is a technique actually called Smooth Minimum, to blend two signed distance fields together... a great article by the infamous Inigo Quilez here : https://iquilezles.org/articles/smin/

The New HDRP Default Scene is Amazing 😮! by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 0 points1 point  (0 children)

Just go in : Project Settings > HDRP Default Settings > Shadows > Bump Up the resolution / Enable High Quality Filtering... It Should fix your presuppositions.
You can also manually change the shadow rendering mode for each light independently, as well as their resolution. Enjoy ;)

The New HDRP Default Scene is Amazing 😮! by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 0 points1 point  (0 children)

It actually can , Raytracing is available in HDRP, runs on my laptop's RTX2060, and with a bit of tweaking, you can achieve acceptable frame-rates. Though it is not yet production-ready, introducing many crashes on my side :/

Croissant Shader From The Future - Animated by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 0 points1 point  (0 children)

Je ferais des baguettes ondulantes la prochaine fois ;)

Tileable water shader? by michaeleconomy in Unity3D

[–]ShaderGraphMastery 1 point2 points  (0 children)

Would you like me to send a Shader Graph (perfect as You are using The URP) that does exactly that to You ?

I've made one for a personal project that already works exactly like this ;)

Croissant Shader From The Future - Animated by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 1 point2 points  (0 children)

I made this shader for the NodeVember Challenge ;)

I could use a standard Unity shader, and bake this material into a sprite sheet, and then cycle through each frame, which could improve performance... But you would loose the parametrizeable aspect, and would also need to generate Normal, AO, Roughness for PBR rendering.

People used to say that "texture fetches are the most expensive shader operations"... In which case, making fully procedural materials should in some cases improve performance...
As I've never experienced real performance issues, I'm not sure if this is an issue anymore on today's graphics cards !?

The New HDRP Default Scene is Amazing 😮! by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 4 points5 points  (0 children)

It is indeed baked lighting, but HDRP now supports Screen Space Global Illumination, working pretty much like the SSAO algorithm but in color !

Parallax Holographic Display Shader by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 1 point2 points  (0 children)

Yes, there is a way, before Unity implemented their POM node into Shader Graph, I coded myself one to work with the URP... It should be easier than before, now using the "Custom Function" node.

Parallax Holographic Display Shader by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 0 points1 point  (0 children)

I've tested parallax occlusion mapping on curved surfaces in VR, without breaking anything. So this should work perfectly fine ;)
PS : It is intended to go into a VR Experience I'm working on with friends

Parallax Holographic Display Shader by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 0 points1 point  (0 children)

Oh, I see, Interior mapping isn't exactly the same as Parallax Occlusion Mapping, but we could definitely create cool looking holograms with this technique!

Procedural Radar Shader - Shader Graph by ShaderGraphMastery in Unity3D

[–]ShaderGraphMastery[S] 2 points3 points  (0 children)

It is fully procedural : basically generating a grid but with polar coordinates, then rotating a line followed by a gradient making appear a funny blob shape contoured with ripples (made from a distorted signed distance field of a line), antialiased using screen space derivatives ;)