Bläddra i källkod

Update JSDocs beginAnimation

Pavel 7 år sedan
förälder
incheckning
cfd9e9613d
1 ändrade filer med 1 tillägg och 2 borttagningar
  1. 1 2
      src/babylon.node.ts

+ 1 - 2
src/babylon.node.ts

@@ -413,12 +413,11 @@
 
         /**
          * Will start the animation sequence
-         * @param {string} name - range frame should animation start
+         * @param {string} name - range frames for animation sequence
          * @param {boolean} [loop] - should the animation loop
          * @param {number} [speedRatio] - the speed in which to run the animation
          * @param {Function} [onAnimationEnd] function to be executed when the animation ended.
          * Returns {BABYLON.Animatable} the animatable object created for this animation, if range not exists will return null
-         * See BABYLON.Animatable
          */
         public beginAnimation(name: string, loop?: boolean, speedRatio?: number, onAnimationEnd?: () => void): Animatable? {
             var range = this.getAnimationRange(name);