Просмотр исходного кода

Merge pull request #16491 from Mugen87/dev32

TS: Add dispose() to Scene.d.ts
Michael Herzog 6 лет назад
Родитель
Сommit
cacdf89bdf
1 измененных файлов с 1 добавлено и 0 удалено
  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;
 }