Browse Source

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

Lightmap: fix shader syntax
sebavan 5 năm trước cách đây
mục cha
commit
25e96aec52
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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]