소스 검색

Fix Inspector Tone Mapping

sebavan 6 년 전
부모
커밋
7f5e8867e2
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      src/PostProcesses/imageProcessingPostProcess.ts

+ 13 - 0
src/PostProcesses/imageProcessingPostProcess.ts

@@ -177,6 +177,19 @@ export class ImageProcessingPostProcess extends PostProcess {
     }
 
     /**
+     * Gets the type of tone mapping effect.
+     */
+    public get toneMappingType(): number {
+        return this._imageProcessingConfiguration.toneMappingType;
+    }
+    /**
+     * Sets the type of tone mapping effect.
+     */
+    public set toneMappingType(value: number) {
+        this._imageProcessingConfiguration.toneMappingType = value;
+    }
+
+    /**
      * Gets contrast used in the effect.
      */
     public get contrast(): number {