Created
February 18, 2021 09:22
-
-
Save keijiro/068982effd6b4a242c24a311f51c4b6c to your computer and use it in GitHub Desktop.
Edge detection with shader graph custom function
This file contains 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
void UVEdge_float(float2 uv, float width, out float edge) | |
{ | |
uv = min(uv, 1 - uv); | |
float2 bd = saturate(1 - uv / (fwidth(uv) * width)); | |
edge = max(bd.x, bd.y); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment