Merge pull request #32243 from kekeqy/master

Add the missing method updateWorldMatrix() to the Object3D of tree.js.
This commit is contained in:
Benjamin Lichtman
2019-01-22 19:21:14 -08:00
committed by GitHub

View File

@@ -1837,6 +1837,8 @@ export class Object3D extends EventDispatcher {
*/
updateMatrixWorld(force: boolean): void;
updateWorldMatrix(updateParents: boolean, updateChildren: boolean): void;
toJSON(meta?: { geometries: any, materials: any, textures: any, images: any }): any;
clone(recursive?: boolean): this;