浏览代码

add missing docs

Trevor Baron 7 年之前
父节点
当前提交
dda5dc75d4
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      src/PostProcess/babylon.depthOfFieldEffect.ts

+ 12 - 0
src/PostProcess/babylon.depthOfFieldEffect.ts

@@ -1,7 +1,19 @@
 module BABYLON {
+    /**
+     * Specifies the level of max blur that should be applied when using the depth of field effect
+     */
     export enum DepthOfFieldEffectBlurLevel {
+        /**
+         * Subtle blur
+         */
         Low,
+        /**
+         * Medium blur
+         */
         Medium,
+        /**
+         * Large blur
+         */
         High
     };
     /**