|
@@ -1,5 +1,5 @@
|
|
|
// threejs.org/license
|
|
|
-const REVISION = '122dev';
|
|
|
+const REVISION = '122';
|
|
|
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;
|
|
@@ -27175,6 +27175,12 @@ VideoTexture.prototype = Object.assign( Object.create( Texture.prototype ), {
|
|
|
|
|
|
constructor: VideoTexture,
|
|
|
|
|
|
+ clone: function () {
|
|
|
+
|
|
|
+ return new this.constructor( this.image ).copy( this );
|
|
|
+
|
|
|
+ },
|
|
|
+
|
|
|
isVideoTexture: true,
|
|
|
|
|
|
update: function () {
|