📅  最后修改于: 2022-03-11 14:55:15.048000             🧑  作者: Mango
shader_type canvas_item;
uniform float blur_amount : hint_range(0, 5);
void fragment() {
COLOR = textureLod(SCREEN_TEXTURE, SCREEN_UV, blur_amount);
}