Skip to content

Commit

Permalink
r122
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Oct 28, 2020
1 parent 261c809 commit 95ef309
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
5 changes: 4 additions & 1 deletion build/three.js
Expand Up @@ -63,7 +63,7 @@
};
}

var REVISION = '122dev';
var REVISION = '122';
var MOUSE = {
LEFT: 0,
MIDDLE: 1,
Expand Down Expand Up @@ -20043,6 +20043,9 @@

VideoTexture.prototype = Object.assign(Object.create(Texture.prototype), {
constructor: VideoTexture,
clone: function clone() {
return new this.constructor(this.image).copy(this);
},
isVideoTexture: true,
update: function update() {
var video = this.image;
Expand Down
2 changes: 1 addition & 1 deletion build/three.min.js

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion build/three.module.js
@@ -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;
Expand Down Expand Up @@ -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 () {
Expand Down
2 changes: 1 addition & 1 deletion editor/sw.js
@@ -1,4 +1,4 @@
// r121
// r122

const assets = [
'./',
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "three",
"version": "0.121.1",
"version": "0.122.0",
"description": "JavaScript 3D library",
"main": "build/three.js",
"module": "build/three.module.js",
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
@@ -1,4 +1,4 @@
export const REVISION = '122dev';
export const REVISION = '122';
export const MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
export const TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
export const CullFaceNone = 0;
Expand Down

0 comments on commit 95ef309

Please sign in to comment.