提交 95ef309c 编写于 作者: M Mr.doob

r122

上级 261c809e
......@@ -63,7 +63,7 @@
};
}
var REVISION = '122dev';
var REVISION = '122';
var MOUSE = {
LEFT: 0,
MIDDLE: 1,
......@@ -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;
此差异已折叠。
// 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 () {
// r121
// r122
const assets = [
'./',
......
{
"name": "three",
"version": "0.121.1",
"version": "0.122.0",
"description": "JavaScript 3D library",
"main": "build/three.js",
"module": "build/three.module.js",
......
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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册