Explorar el Código

AnimationClip: Prevent type loss in toJSON

Ian Purvis hace 4 años
padre
commit
9c437fd880
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/animation/AnimationClip.js

+ 1 - 1
src/animation/AnimationClip.js

@@ -387,7 +387,7 @@ class AnimationClip {
 
 	toJSON() {
 
-		return AnimationClip.toJSON( this );
+		return this.constructor.toJSON( this );
 
 	}