Browse Source

missing docs

Trevor Baron 7 years ago
parent
commit
5fd34ee8a1
1 changed files with 7 additions and 0 deletions
  1. 7 0
      src/PostProcess/babylon.depthOfFieldEffect.ts

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

@@ -155,12 +155,19 @@ module BABYLON {
             this._depthOfFieldMerge.dispose(camera);
             this._depthOfFieldMerge.dispose(camera);
         }
         }
 
 
+        /**
+         * Internal
+         */
         public _updateEffects(){
         public _updateEffects(){
             for(var effect in this._effects){
             for(var effect in this._effects){
                 this._effects[effect].updateEffect();
                 this._effects[effect].updateEffect();
             }
             }
         }
         }
 
 
+        /**
+         * Internal
+         * @returns if all the contained post processes are ready.
+         */
         public _isReady(){
         public _isReady(){
             for(var effect in this._effects){
             for(var effect in this._effects){
                 if(!this._effects[effect].isReady()){
                 if(!this._effects[effect].isReady()){