소스 검색

Merge pull request #2378 from zfbx/patch-3

fixed texture call which reported as a missing image
Areloch 5 년 전
부모
커밋
f68d72f356
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Templates/Full/game/core/scripts/client/lighting/advanced/lightViz.cs

+ 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;
 };