Popov72 5 년 전
부모
커밋
c65215b728
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/Lights/Shadows/cascadedShadowGenerator.ts

+ 2 - 1
src/Lights/Shadows/cascadedShadowGenerator.ts

@@ -492,11 +492,12 @@ export class CascadedShadowGenerator implements IShadowGenerator {
         this._breaksAreDirty = true;
     }
 
-    /** Gets the minimal and maximal distances used in the cascade break computation */
+    /** Gets the minimal distance used in the cascade break computation */
     public get minDistance(): number {
         return this._minDistance;
     }
 
+    /** Gets the maximal distance used in the cascade break computation */
     public get maxDistance(): number {
         return this._maxDistance;
     }