Quellcode durchsuchen

Fix PARAMETER ERROR of AnimationClip.toJSON()

beidongjiedeguang vor 4 Jahren
Ursprung
Commit
e20b24a50c
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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( json: any): any;
 
 }