This repository has been archived on 2024-04-19. You can view files and clone it, but cannot push or open issues or pull requests.
Jessist/Shaders/BlurTransition.tres
2022-06-18 13:05:48 +02:00

10 lines
212 B
Text

[gd_resource type="Shader" format=2]
[resource]
code = "shader_type canvas_item;
uniform float blur_amount : hint_range(0, 5);
void fragment() {
COLOR = textureLod(SCREEN_TEXTURE, SCREEN_UV, blur_amount);
}"