소스 검색

Fix typedoc

Sebastien Vandenberghe 7 년 전
부모
커밋
dc12591c71
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      src/Lights/Shadows/babylon.shadowGenerator.ts

+ 5 - 1
src/Lights/Shadows/babylon.shadowGenerator.ts

@@ -118,7 +118,11 @@
          * (https://developer.nvidia.com/gpugems/GPUGems/gpugems_ch11.html)
          */
         public static readonly FILTER_PCF = 6;
-
+        /**
+         * Shadow generator mode PCSS: Percentage Closering Soft Shadow. 
+         * benefits from Webgl 2 shadow samplers. Fallback to Poisson Sampling in Webgl 1
+         * Contact Hardening
+         */
         public static readonly FILTER_PCSS = 7;
 
         /**