Browse Source

Update babylon.animationGroup.ts

Raanan Weber 7 years ago
parent
commit
670822e5c2
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/Animations/babylon.animationGroup.ts

+ 1 - 3
src/Animations/babylon.animationGroup.ts

@@ -61,7 +61,6 @@ module BABYLON {
 
         /**
          * returning the list of animatables controlled by this animation group.
-         * @returns an Array of animatables.
          */
         public get animatables(): Array<Animatable> {
             return this._animatables;
@@ -256,7 +255,6 @@ module BABYLON {
          * Goes to a specific frame in this animation group
          * 
          * @param frame the frame number to go to
-         * @returns this animation group, for chaining
          */
         public goToFrame(frame: number): AnimationGroup {
             if (!this._isStarted) {
@@ -285,4 +283,4 @@ module BABYLON {
             }
         }
     }
-}
+}