Browse Source

Merge pull request #16491 from Mugen87/dev32

TS: Add dispose() to Scene.d.ts
Michael Herzog 6 years ago
parent
commit
cacdf89bdf
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;
   toJSON(meta?: any): any;
+  dispose(): void;
 }