Skip to content

Instantly share code, notes, and snippets.

View MauriceButler's full-sized avatar

Maurice Butler MauriceButler

View GitHub Profile
@MauriceButler
MauriceButler / EdgeTracingShader
Created March 15, 2023 00:31 — forked from CIOSAI/EdgeTracingShader
Edge Tracing Shader in Godot
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;
}