Add basic ui controller

This commit is contained in:
2020-07-15 18:12:50 -07:00
parent 66dd0a6206
commit 1316dbb553
12 changed files with 346 additions and 17 deletions

View File

@ -157,7 +157,6 @@ inline float SDFAA(float dist) {
float ddist = length(float2(ddx(dist), ddy(dist)));
float pixelDist = dist / ddist;
return saturate(0.5-pixelDist);
return saturate(0.5 - dist);
}
#endif