This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shader_type canvas_item; | |
uniform sampler2D tex; | |
uniform float intensity; | |
uniform vec4 color : hint_color; | |
uniform float speed; | |
float sample(in vec2 st){ | |
return texture(tex, st).a; | |
} |