Browse Source

Merge pull request #2378 from zfbx/patch-3

fixed texture call which reported as a missing image
Areloch 5 years ago
parent
commit
f68d72f356

+ 1 - 1
Templates/Full/game/core/scripts/client/lighting/advanced/lightViz.cs

@@ -67,7 +67,7 @@ singleton PostEffect( AL_DepthVisualize )
    shader = AL_DepthVisualizeShader;
    stateBlock = AL_DefaultVisualizeState;
    texture[0] = "#deferred";
-   texture[1] = "depthviz";   
+   texture[1] = "./depthviz";   
    target = "$backBuffer";
    renderPriority = 9999;
 };