Lol me sitting here doing the vector finger pointing bit, only to look back at my screen to see footage of you doing the same 😂 Thanks for adding that note-it helped me feel better abt not *just* knowing the math.
I really appreciate you posting these videos. There are so many small and big things that one can learn and apply, not only in the context of the video but also in other areas. This was incredibly helpful and informative, just like all your videos always are! The normal axis finger pointing thing, lol!
Absolutely top-tier breakdown and explanation. Appreciate the time it took to not only figure out the penta and enna-planar techniques, but also the time to break it all down and show it.
Hey awesome video, at 9:00 minutes though, how did you get the "world X Axis" and "World Y Axis" - I keep looking for them, but I can't seem to find it when creating nodes :(
Fantastic Video ! It would be great if you could bring up the "seamless_scale" topic, which was created to bypass texture stretching issues on tessellation(or WPO) displacement surfaces. This has been implemented in the Valve 'Source' Engine since 2007, but in the Unreal Engine there is still no way to cope with texture stretching at high World Position Offset values. I think you are the right person to handle such a complex problem.
@@VisualTechArt He is talking about Source Engine seamless_scale, a shader parameter for dealing with texture stretching issues on displacement. You can found in the developer valvesoftware wiki. But it is not a complete solution in some cases it's talked about in their wike Caveats.
great video as ever, your the triplanar king! Looking forward to your video on Triplanar for assets as thats what i use it for the most. What annoys me the most is how the built in world space mapper from Epic is so flawed.. even the way it mixes the channels togther it ludicrously broken..
Amazing video, it's incredibly helpful! May i ask what you set the Center X, Center Y and Speed values to for the Rotator node in 22:30? I understood that this was where you made the 45 degree rotation but i wasn't sure if there were any values specifically adjusted for the rotator node. Once again, much appreciated!
This video and the one that follows are a matter of ABSOLUTE PUBLIC INTEREST when it comes to materials in UE. Well f'ing done man, and thanks for undergoing all these hours of existential crisis for all of us x) ! That's a sub right there! It also has to be said that thanks to this video, I understand axes, vectors and normal maps waaaay better !!
Thank you so much for this! Everything looks so much better now. I can't believe I didn't realize how wrong it was before, I had an inkling but it seems like night and day now. Your knowledge, intelligence and generosity is very much admired and appreciated! Bravo!
15:05 - So Sine in UE is not the same as Sine HLSL or Cosine reversed (1-) both of which are the same, which makes me Ask rather than question since I have forgotten the period value fix part... if the material is right & wouldn't a Cosine reversed (1-) be better here?
I'm not sure I got all what you were thrying to say... Anyways: in HLSL the trigonometric functions are all in radians, while in UE's nodes you're forced to set a period length. In this case I set it to 4 because I just wanted the vector to rotate 90° with a parameter that goes from 0 to 1 :)
@@VisualTechArt ah ok so you did set them. Best example of what I was saying is do a custom (HLSL) node & add sine to it. Then do a Sine node in unreal (dont set a period - use as is like most people...). Compare the result. The result is different. Now do a Cosine with a oneminus in unreal with nodes & compare that result, its result is the same as the HLSL sine. Meaning a Cosine & Sine used straight, no period setting give different results. Unsure when they plan to fix it.
I tried to apply UV rotation on EnnaPlanar but rotation is just stretching and skewing the texture. seems like it's not possible to get proper texture rotation. let me know if I am wrong.
Terrific video, and I especially applaud you for showing the setbacks and the debugging process. Software development is almost never monotonically forward. :)
Hey man! Love your videos, it's like being in college all over again with all the math haha (still going through the video). At 2:54, if you do a frac right after the divide , (frac output goes to all the component masks) then invert G & B for the 'X' and just B for 'Y', all textures should be facing the same direction, no?
Is there any way to make this work locally? For stuff like moving objects and such. I tried following along but plugging transformposition and transformvector to turn abs world space and world space into local ones but that didn't work. i have a completely differently-structured script that works fine for cube-like objects but anything round or slanted is just yikes, and I'm stuck trying to find a fix to that.
9:34 is me any time I'm using vectors lol. One time we had a someone filling in for our teacher in a Physics class, and they got mad at us for "sharing answers with each other". We asked them how, and they said we were communicating with hand motions haha.
Out of all the videos I’ve watched on triplanar mapping, this is the best tutorial. I am eagerly awaiting Part 2 on the assets pipeline. Could you please let me know when you will release the video on that?
I wrote a quaternion based normal baker to just avoid the whole conversion step at the cost of needing to use rgba in the "normal" map Was a fun exercise in learning quaternion math to replace matrix transofrmations Cool to see the mat solution!
thank you very much, warlock! 15:10 - apparently I didn't understand something. why can't you use swizzle? there is 'swizzle' node in materials. you can also change the order of channels through the 'break float' or 'split components' and 'make float' nodes :) yeah, it's not a one node and no so minimal and concise like a custom expression, but 'make float' will reduce some your 'append' blocks :)
Let's say it was a little excuse to show a little bit of HLSL :) Plus I try to avoid using UE's MFs where I can, both to show how things are done and also because you mitigate the risk of getting your shader broken in the future because they removed something from the library :D
I remember struggeling so much a couple years ago with getting a triplanar brick texture with normalmap to look correctly. i never got it quite right. finally i understand why.
Thank you. How performant is this (the extra instructions if we put your MF in many of our Mats)? Im already doing 3 layer Vertex Paint + Triplanar. So I think Id need your MF on every (3) Texture layer that blends in [the code of] each Material.
It has more stuff going on of course, but don't stress too much about it (and measure the performance of it in your game to actually see if that needs to be addressed). When you use multiple instances of the same MF the compiler will recognise that many nodes are the same and all giving you the same output, so it will optimize them and run only once ;)
Well for the POM you have to raymarch, so of course you need to sample multiple times... I guess that since here we recompute the basis POM can work properly, not sure if you need to recompute everything at each step, which would make the shader super expensive :)
Thank you for your video, excellent explanation, I have a question about the Anisotropy (brushed metal) , it seems it is almost the same problem as the normal? how can we calculate the anisotropy in tri-planar? , wish you beautiful success with your chanell
Thanks! :D Yes it does as it's based on the tangent vectors :) If you take the "Basis X" of the matrix in my shader you should already have them correct, not sure though, I would need to check
For those who still don't have the right normal orientations : Here is a comment for people who may have an issue with the normal triplanar axis orientation as described in the tutorial : to be considered only once the projection problems are fixed (talking about the X and Y Nan check nodes added in the later version of the system which fixed everything for me not sure how). So for the axis orientation, here is what I did, because even with VTA's function, everything worked for me except the normal axis orientation, per face projection. (Beware the cross products, they must to be in the same order, an inverted cross order gives an inverted vector) X projection : - Z is VertNormal ✅ - Y is VertNorm cross (ProjSign (Mask R) * WorldY) -> YNan -> Normalized (I just don't invert the ProjSigns) ❌ - X is Y cross VertNorm -> YNan ❌ Y projection : - Z is VertNormal ✅ - Y is VertNorm cross (ProjSign (Mask G) * -1 * WorldX) -> XNan -> Normalized ❌ - X is Y cross VertNorm -> XNan✅ Z projection : - Z is VertNormal ✅ - Y is VertNorm cross (WorldX * -1) -> XNan -> Normalized❌ - X is Y cross VertNorm -> XNan✅ Hope this helps some people !
UE has a hidden node called PerturbNormals. Could just use that at the end to convert a simple height map to normals instead of dealing with broken normals
I don't know about this node but I didn't go too fancy with this and stick to the topic :D I did something similar in my previous video "The Only Texture a Game Needs" :)
Ben Cloward explained this theme 3 years ago.. The great problem is when you´re using this triplanar projection in a model with animation and you must preskinned position to maintain the projection material in the right position.. I can´t explain more by here writting you but when you try apply this projection and you must correct after the texture the direction of the normals with preskinned materials and not with vertex normal ws then you´ll discover all the problems (not is valid work with vertex interpolator node) . Try this challenge dear guy and youll discover the problems when you´re working them).. THIS IS THE REAL CHALLENGE GUY.. Have you a technical solutions to this problem?.. I respect you but I would like watch you explaining solutions to other level. I follow during lot years I know that you´re a great profesional with a level similar to render bucket channel (with awesome contents). Answer me if you consider this hard question interesting.. (I must apologize you because not writte english right.) Thank´s you guy for your contents..
Nice video! Your weights caculcation is way too complicated, just do contrast( abs( normals )), either smooth or straight contrast will do (demo is on shadertoy). Glad to see I'm not the only one suffering on the TBN Matrix. You can use a dithering to make the non blending transitions way smoother especally with TAA, which most have enabled anyway.
That would work, It would be like stopping before normalizing the weights, which is not mandatory, but I like to have them balanced as it can be useful for other things too :) And yeah, I could have added dithering but there was already too much stuff in the video and also adds all the annoyance of dealing with ghosting, maybe I can do a follow-up with that!
Damn! You must be the best shader programmer working in Unreal Engine right now! Well done sir!
9:43 This is what real programming looks like 😆
Man I love watching people put in the effort to do stuff the *right* way!
man got gaslit on what left and right was
So true! Also you'll get the 'best" ideas when you can't try them out: Eurikaaa! But then, you try them out: yep, nope...
Lol me sitting here doing the vector finger pointing bit, only to look back at my screen to see footage of you doing the same 😂
Thanks for adding that note-it helped me feel better abt not *just* knowing the math.
We all struggle with that xD
Came here to make pretty much the same comment haha
Modular c++ code
9:33 The story of every graphics programmer. =P
I really appreciate you posting these videos. There are so many small and big things that one can learn and apply, not only in the context of the video but also in other areas. This was incredibly helpful and informative, just like all your videos always are! The normal axis finger pointing thing, lol!
Best in depth explaination of tri planar and even beyond.
I do not comment very often on youtube videos but this one is extremly well done.
Quite a coincidence, I was actually talking about triplanar in a meeting yesterday :D Greate video as usual :) Can't wait for part two!
Absolutely top-tier breakdown and explanation. Appreciate the time it took to not only figure out the penta and enna-planar techniques, but also the time to break it all down and show it.
Hey awesome video, at 9:00 minutes though, how did you get the "world X Axis" and "World Y Axis" - I keep looking for them, but I can't seem to find it when creating nodes :(
They're just Named Reroute Nodes of basic vectors :)
Fantastic Video ! It would be great if you could bring up the "seamless_scale" topic, which was created to bypass texture stretching issues on tessellation(or WPO) displacement surfaces.
This has been implemented in the Valve 'Source' Engine since 2007, but in the Unreal Engine there is still no way to cope with texture stretching at high World Position Offset values.
I think you are the right person to handle such a complex problem.
It sounds interesting, even though I'm not sure of what you're referring to xD can you provide a resource for me to start the research from?
@@VisualTechArt
He is talking about Source Engine seamless_scale, a shader parameter for dealing with texture stretching issues on displacement.
You can found in the developer valvesoftware wiki.
But it is not a complete solution in some cases it's talked about in their wike Caveats.
Amazing video as always! Good to see I'm not the only one that looks like that when trying to figure out vector math transformations.
SUBSCRIBED!!!
The combination of humor and teaching amazing stuuf is amazing Thank you for your work.
great video as ever, your the triplanar king! Looking forward to your video on Triplanar for assets as thats what i use it for the most. What annoys me the most is how the built in world space mapper from Epic is so flawed.. even the way it mixes the channels togther it ludicrously broken..
Dude you are amazing, youve done so many people such a huge favor and are changing the indie game dev community!
Amazing video, it's incredibly helpful! May i ask what you set the Center X, Center Y and Speed values to for the Rotator node in 22:30? I understood that this was where you made the 45 degree rotation but i wasn't sure if there were any values specifically adjusted for the rotator node. Once again, much appreciated!
The set up is the same as the one I show the first time I place down a Rotator :D
Absolutely love this in-depth tutorial, thank you mate!
This video and the one that follows are a matter of ABSOLUTE PUBLIC INTEREST when it comes to materials in UE. Well f'ing done man, and thanks for undergoing all these hours of existential crisis for all of us x) ! That's a sub right there!
It also has to be said that thanks to this video, I understand axes, vectors and normal maps waaaay better !!
Cheers! xD
Ennplanar projection - Mind Blown
Thank you so much for this! Everything looks so much better now. I can't believe I didn't realize how wrong it was before, I had an inkling but it seems like night and day now. Your knowledge, intelligence and generosity is very much admired and appreciated! Bravo!
15:05 - So Sine in UE is not the same as Sine HLSL or Cosine reversed (1-) both of which are the same, which makes me Ask rather than question since I have forgotten the period value fix part... if the material is right & wouldn't a Cosine reversed (1-) be better here?
I'm not sure I got all what you were thrying to say...
Anyways: in HLSL the trigonometric functions are all in radians, while in UE's nodes you're forced to set a period length. In this case I set it to 4 because I just wanted the vector to rotate 90° with a parameter that goes from 0 to 1 :)
@@VisualTechArt ah ok so you did set them. Best example of what I was saying is do a custom (HLSL) node & add sine to it. Then do a Sine node in unreal (dont set a period - use as is like most people...). Compare the result. The result is different. Now do a Cosine with a oneminus in unreal with nodes & compare that result, its result is the same as the HLSL sine. Meaning a Cosine & Sine used straight, no period setting give different results. Unsure when they plan to fix it.
Thank you! I like to learn from you!
where did that blue normal vertex node come from? 4:38
Maybe you're referring to a named reroute node :)
@@VisualTechArt yes, but I haven't seen you using this redirect before
@@VisualTechArt aaaaaah, I forgot, I see
Fantastic in depth explanation. I always learn a lot with your videos. Thanks, mate!
I tried to apply UV rotation on EnnaPlanar but rotation is just stretching and skewing the texture. seems like it's not possible to get proper texture rotation. let me know if I am wrong.
Once you generate the UVs you can simply apply some Rotator nodes there and it should work :)
Terrific video, and I especially applaud you for showing the setbacks and the debugging process. Software development is almost never monotonically forward. :)
Hey man! Love your videos, it's like being in college all over again with all the math haha (still going through the video). At 2:54, if you do a frac right after the divide , (frac output goes to all the component masks) then invert G & B for the 'X' and just B for 'Y', all textures should be facing the same direction, no?
That's quite early in the video, keep watching ;)
Is there any way to make this work locally? For stuff like moving objects and such. I tried following along but plugging transformposition and transformvector to turn abs world space and world space into local ones but that didn't work. i have a completely differently-structured script that works fine for cube-like objects but anything round or slanted is just yikes, and I'm stuck trying to find a fix to that.
Just watch the follow-up video ;)
@@VisualTechArt Oh! I'll be sure to check that out later, lol. Thanks!
@@VisualTechArtit worked! One thing though, how would I put an offset on the tiling?
Incredible, I can't wait for the follow up video
9:34 is me any time I'm using vectors lol. One time we had a someone filling in for our teacher in a Physics class, and they got mad at us for "sharing answers with each other". We asked them how, and they said we were communicating with hand motions haha.
Ahahahah
Out of all the videos I’ve watched on triplanar mapping, this is the best tutorial. I am eagerly awaiting Part 2 on the assets pipeline. Could you please let me know when you will release the video on that?
Thanks, I'm working on it, few more weeks to wait I think :)
9:30 ... Why is it so familiar?
Multiple wrist and shoulder dislocations while trying to apply the right hand rule
@@VisualTechArt I can draw the landscape visible from my window from memory...
I wrote a quaternion based normal baker to just avoid the whole conversion step at the cost of needing to use rgba in the "normal" map
Was a fun exercise in learning quaternion math to replace matrix transofrmations
Cool to see the mat solution!
Any ETA on how to use this with Models and not Landscape?
Next video, few weeks to wait still :)
Just discovered your channel, omg man you're godsent!
You're an amazing teacher, thanks a lot!
thank you very much, warlock!
15:10 - apparently I didn't understand something. why can't you use swizzle? there is 'swizzle' node in materials. you can also change the order of channels through the 'break float' or 'split components' and 'make float' nodes :) yeah, it's not a one node and no so minimal and concise like a custom expression, but 'make float' will reduce some your 'append' blocks :)
Let's say it was a little excuse to show a little bit of HLSL :)
Plus I try to avoid using UE's MFs where I can, both to show how things are done and also because you mitigate the risk of getting your shader broken in the future because they removed something from the library :D
@@VisualTechArt oh, ok, I understand :)
Can you design a version where all 6 poles of the sphere will have an octagon instead of just 2?
I could, I don't know if I will xD
I remember struggeling so much a couple years ago with getting a triplanar brick texture with normalmap to look correctly. i never got it quite right. finally i understand why.
Thank you. How performant is this (the extra instructions if we put your MF in many of our Mats)? Im already doing 3 layer Vertex Paint + Triplanar. So I think Id need your MF on every (3) Texture layer that blends in [the code of] each Material.
It has more stuff going on of course, but don't stress too much about it (and measure the performance of it in your game to actually see if that needs to be addressed).
When you use multiple instances of the same MF the compiler will recognise that many nodes are the same and all giving you the same output, so it will optimize them and run only once ;)
Can this work with parallax occlusion mapping? I've done one before but it required 6 samplers. :\
Well for the POM you have to raymarch, so of course you need to sample multiple times...
I guess that since here we recompute the basis POM can work properly, not sure if you need to recompute everything at each step, which would make the shader super expensive :)
You are amazing, this helped me out so much you have no idea!!!
Amazing content!!!
Glad to read that :)
I dont get it. We can constantly see enormous stretching at the bottom of the sphere. How come you avoid adressing this?
Because the landscape doesn't have a bottom part :)
@@VisualTechArtyeah it crossed my mind thats no issue since its the terrain use case example. Really looking forward to the sequel
Great stuff, thanks for the breakdowns!
Thank you for your video, excellent explanation, I have a question about the Anisotropy (brushed metal) , it seems it is almost the same problem as the normal? how can we calculate the anisotropy in tri-planar? , wish you beautiful success with your chanell
Thanks! :D
Yes it does as it's based on the tangent vectors :)
If you take the "Basis X" of the matrix in my shader you should already have them correct, not sure though, I would need to check
But wait, is there a sharp transition between projections or not?
On the single sample version, yes
@@VisualTechArt if anyones interested, theres a video where guy blends it with SS dithering.. I wonder if one could blend it further using fwidth
Amazing visualisations!
You, sir, are a sage and a saviour. Thank you very much!
been working on a scene that's heavily dependent on triplanar, this is great!
Ben Golus wrote a solid article about it
Great breakdown!
For those who still don't have the right normal orientations :
Here is a comment for people who may have an issue with the normal triplanar axis orientation as described in the tutorial : to be considered only once the projection problems are fixed (talking about the X and Y Nan check nodes added in the later version of the system which fixed everything for me not sure how).
So for the axis orientation, here is what I did, because even with VTA's function, everything worked for me except the normal axis orientation, per face projection.
(Beware the cross products, they must to be in the same order, an inverted cross order gives an inverted vector)
X projection :
- Z is VertNormal ✅
- Y is VertNorm cross (ProjSign (Mask R) * WorldY) -> YNan -> Normalized (I just don't invert the ProjSigns) ❌
- X is Y cross VertNorm -> YNan ❌
Y projection :
- Z is VertNormal ✅
- Y is VertNorm cross (ProjSign (Mask G) * -1 * WorldX) -> XNan -> Normalized ❌
- X is Y cross VertNorm -> XNan✅
Z projection :
- Z is VertNormal ✅
- Y is VertNorm cross (WorldX * -1) -> XNan -> Normalized❌
- X is Y cross VertNorm -> XNan✅
Hope this helps some people !
Amazing content, thanks !
UE has a hidden node called PerturbNormals. Could just use that at the end to convert a simple height map to normals instead of dealing with broken normals
I don't know about this node but I didn't go too fancy with this and stick to the topic :D I did something similar in my previous video "The Only Texture a Game Needs" :)
How is that possible? Because people regurgitate the same tutorials xD
You'll start to see your method leeched too :P
Sad truth xD
Doing gods work
Ben Cloward explained this theme 3 years ago.. The great problem is when you´re using this triplanar projection in a model with animation and you must preskinned position to maintain the projection material in the right position.. I can´t explain more by here writting you but when you try apply this projection and you must correct after the texture the direction of the normals with preskinned materials and not with vertex normal ws then you´ll discover all the problems (not is valid work with vertex interpolator node) . Try this challenge dear guy and youll discover the problems when you´re working them).. THIS IS THE REAL CHALLENGE GUY.. Have you a technical solutions to this problem?.. I respect you but I would like watch you explaining solutions to other level. I follow during lot years I know that you´re a great profesional with a level similar to render bucket channel (with awesome contents). Answer me if you consider this hard question interesting.. (I must apologize you because not writte english right.) Thank´s you guy for your contents..
Ok but keep calm xD
That will most likely be addressed in the follow up, where I'll show what needs to be done to fit the tech to assets :)
Yeah the fact everyone gets it working in crazy
Nice video!
Your weights caculcation is way too complicated, just do contrast( abs( normals )), either smooth or straight contrast will do (demo is on shadertoy).
Glad to see I'm not the only one suffering on the TBN Matrix.
You can use a dithering to make the non blending transitions way smoother especally with TAA, which most have enabled anyway.
That would work, It would be like stopping before normalizing the weights, which is not mandatory, but I like to have them balanced as it can be useful for other things too :)
And yeah, I could have added dithering but there was already too much stuff in the video and also adds all the annoyance of dealing with ghosting, maybe I can do a follow-up with that!
bro looks like antony starr