Bläddra i källkod

Merge pull request #20569 from beidongjiedeguang/dev1

Fix parameter error of AnimationClip.toJSON()
Mr.doob 4 år sedan
förälder
incheckning
1f0d19384c
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      src/animation/AnimationClip.d.ts

+ 1 - 1
src/animation/AnimationClip.d.ts

@@ -45,6 +45,6 @@ export class AnimationClip {
 		animation: any,
 		bones: Bone[]
 	): AnimationClip;
-	static toJSON(): any;
+	static toJSON( clip: AnimationClip ): any;
 
 }