|
@@ -3,7 +3,7 @@
|
|
|
* Copyright 2010-2021 Three.js Authors
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
*/
|
|
|
-const REVISION = '133dev';
|
|
|
+const REVISION = '133';
|
|
|
const MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
|
|
|
const TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
|
|
|
const CullFaceNone = 0;
|
|
@@ -6706,8 +6706,9 @@ class Object3D extends EventDispatcher {
|
|
|
|
|
|
}
|
|
|
|
|
|
- onBeforeRender() {}
|
|
|
- onAfterRender() {}
|
|
|
+ onBeforeRender( /* renderer, scene, camera, geometry, material, group */ ) {}
|
|
|
+
|
|
|
+ onAfterRender( /* renderer, scene, camera, geometry, material, group */ ) {}
|
|
|
|
|
|
applyMatrix4( matrix ) {
|
|
|
|
|
@@ -28433,7 +28434,7 @@ class SkinnedMesh extends Mesh {
|
|
|
_skinIndex.fromBufferAttribute( geometry.attributes.skinIndex, index );
|
|
|
_skinWeight.fromBufferAttribute( geometry.attributes.skinWeight, index );
|
|
|
|
|
|
- _basePosition.fromBufferAttribute( geometry.attributes.position, index ).applyMatrix4( this.bindMatrix );
|
|
|
+ _basePosition.copy( target ).applyMatrix4( this.bindMatrix );
|
|
|
|
|
|
target.set( 0, 0, 0 );
|
|
|
|