Browse Source

TS: Add dispose() to Scene.d.ts

Mugen87 6 years ago
parent
commit
05bee2291b
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/scenes/Scene.d.ts

+ 1 - 0
src/scenes/Scene.d.ts

@@ -29,4 +29,5 @@ export class Scene extends Object3D {
 
 
   copy(source: this, recursive?: boolean): this;
   copy(source: this, recursive?: boolean): this;
   toJSON(meta?: any): any;
   toJSON(meta?: any): any;
+  dispose(): void;
 }
 }