소스 검색

Merge pull request #8194 from Popov72/fix-lightmap-syntax

Lightmap: fix shader syntax
sebavan 5 년 전
부모
커밋
25e96aec52
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Shaders/default.fragment.fx

+ 1 - 1
src/Shaders/default.fragment.fx

@@ -258,7 +258,7 @@ void main(void) {
     #ifdef RGBDLIGHTMAP
         lightmapColor.rgb = fromRGBD(lightmapColor);
     #endif
-	lightmapColor.rgb *= vLightmapInfos.y
+	lightmapColor.rgb *= vLightmapInfos.y;
 #endif
 
 #include<lightFragment>[0..maxSimultaneousLights]