From 48a6f2cf346c81857806f0f3cf0c6af1e9690535 Mon Sep 17 00:00:00 2001 From: Rezmason Date: Wed, 27 Oct 2021 19:03:38 -0700 Subject: [PATCH] Fixing a typo and adding looping functionality to the TODO list --- TODO.txt | 2 ++ shaders/rainPass.compute.frag.glsl | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/TODO.txt b/TODO.txt index dc6e6a1..3332431 100644 --- a/TODO.txt +++ b/TODO.txt @@ -6,6 +6,8 @@ Write an explanation of the rain pass (and include images) Fullscreen quad and spacial mapping MSDFs +Support looping + Resurrection Modified glyph order? New glyphs? diff --git a/shaders/rainPass.compute.frag.glsl b/shaders/rainPass.compute.frag.glsl index 51638fc..d3a3307 100644 --- a/shaders/rainPass.compute.frag.glsl +++ b/shaders/rainPass.compute.frag.glsl @@ -4,7 +4,7 @@ precision highp float; // R: brightness // G: progress through the glyph sequence // B: depth, aka distance from the screen -// A: additional brightness for effects\ +// A: additional brightness for effects // Listen. // I understand if this shader looks confusing. Please don't be discouraged!