9 lines
165 B
Text
9 lines
165 B
Text
|
shader_type canvas_item;
|
||
|
|
||
|
//!load ./images/swamp.jpg
|
||
|
#include "res://shaderlib/blur.gdshaderinc"
|
||
|
|
||
|
void fragment() {
|
||
|
COLOR = gaussian_blur(TEXTURE, UV, 48, 24.0);
|
||
|
}
|