Browse Source

missing doc

Trevor Baron 7 years ago
parent
commit
7bfddb4f69
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/PostProcess/babylon.extractHighlightsPostProcess.ts

+ 3 - 0
src/PostProcess/babylon.extractHighlightsPostProcess.ts

@@ -7,6 +7,9 @@ module BABYLON {
          * The luminance threshold, pixels below this value will be set to black.
          */
         public threshold = 0.9;
+        /**
+         * Post process which has the input texture to be used when performing highlight extraction
+         */
         public _inputPostProcess:Nullable<PostProcess> = null;
         constructor(name: string, options: number | PostProcessOptions, camera: Nullable<Camera>, samplingMode?: number, engine?: Engine, reusable?: boolean, textureType: number = Engine.TEXTURETYPE_UNSIGNED_INT, blockCompilation = false) {
             super(name, "extractHighlights", ["threshold"], null, options, camera, samplingMode, engine, reusable, null, textureType, undefined, null, blockCompilation);