소스 검색

Fix missing dot

Sebastien Lebreton 5 년 전
부모
커밋
174d514f16
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Viewer/src/configuration/interfaces/sceneConfiguration.ts

+ 2 - 2
Viewer/src/configuration/interfaces/sceneConfiguration.ts

@@ -5,13 +5,13 @@ import { IGlowLayerOptions } from "babylonjs";
 export interface ISceneConfiguration {
     debug?: boolean;
     clearColor?: { r: number, g: number, b: number, a: number };
-    /** @deprecated Please use environmentMap.mainColor instead */
+    /** @deprecated Please use environmentMap.mainColor instead. */
     mainColor?: { r?: number, g?: number, b?: number };
     imageProcessingConfiguration?: IImageProcessingConfiguration;
     environmentTexture?: string;
     colorGrading?: IColorGradingConfiguration;
     environmentRotationY?: number;
-    /** @deprecated Please use default rendering pipeline */
+    /** @deprecated Please use default rendering pipeline. */
     glow?: boolean | IGlowLayerOptions;
     disableHdr?: boolean;
     renderInBackground?: boolean;