浏览代码

missing doc

Trevor Baron 7 年之前
父节点
当前提交
7bfddb4f69
共有 1 个文件被更改,包括 3 次插入0 次删除
  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);