diff --git a/Shaders/frag/wp_disc.frag b/Shaders/frag/wp_disc.frag index f44fa1b4..58a5e029 100644 --- a/Shaders/frag/wp_disc.frag +++ b/Shaders/frag/wp_disc.frag @@ -120,5 +120,7 @@ void main() { // Mix the textures (factor = 0 inside disc, 1 outside) fragColor = mix(color2, color1, factor); + if (ubuf.progress <= 0.0) fragColor = color1; + fragColor *= ubuf.qt_Opacity; } \ No newline at end of file diff --git a/Shaders/qsb/wp_disc.frag.qsb b/Shaders/qsb/wp_disc.frag.qsb index fc6324f9..364ba258 100644 Binary files a/Shaders/qsb/wp_disc.frag.qsb and b/Shaders/qsb/wp_disc.frag.qsb differ