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 float row_offset : hint_range(0.0, 1.0, 0.01); | |
uniform vec2 direction = vec2(0.77, 0.77); | |
uniform float speed = 10.0; | |
uniform float skew_amount : hint_range(-1.0, 1.0, 0.01) = 0.5; | |
uniform float perspective_amount = -0.5; | |
void fragment() { |