How to Blur a Texture in Blender

I've needed to dynamically blur a texture rather often when working, and all the methods I have seen are needlessly complicated when the solution in Blender's material nodes is actually very simple.  This is a very quick and simple tutorial for blurring any texture—even prodecurals—dynamically with only 2 additional nodes.

All you need to do is place a MixRGB node between the mapping and the texture nodes, set it to Linear Light, and connect a Noise Texture's color output to the Color2 input like so.  

A larger noise scale value will produce a higher quality blur but will also be slightly slower.  I use a value of 20000 in most cases (as higher values produce no noticeable difference).  Then you can use the fac input to precisely and dynamically adjust the blur amount—you can even keyframe it or connect a driver to it like any other.  This method can even be used for any procedural node that includes a vector input as well.  Be sure to also set your render/viewport samples to a larger amount to reduce noise, and this works in both EEVEE and Cycles.

And that's it; it's that simple.  No third-party node downloads or complicated node setups required.

Personally, I find this most useful when creating NPR materials and need a dynamic fake roughness effect, but it has plenty of other uses as well.  I hope someone finds this helpful.

---

1.マッピングとテクスチャの間にリニアライトが置きなさい。
2.ノイズテクスチャのカラー出力からリニアライトの色2が繋ぎなさい。
3.ノイズテクスチャのスケールが2万と設定しなさい。
4.係数が設定しなさい 。

1. 在贴图和纹理之间放置一盏线灯。
2. 从噪声纹理的颜色输出中连接线性光的颜色 2。
3. 将噪点纹理比例设置为 20,000。
4. 设置系数。 

1. 매핑과 텍스처 사이에 선형 조명을 배치합니다.
2. 노이즈 텍스처의 색상 출력에서 선형 조명의 색상 2를 연결합니다.
3. 노이즈 텍스처 스케일을 20,000으로 설정합니다.
4. 계수를 설정합니다.