提交 6e15b50e 编写于 作者: G gero3

all DataTextures needs updates at start

上级 c5323d1a
......@@ -19,6 +19,8 @@ function DataTexture2DArray( data, width, height, depth ) {
this.generateMipmaps = false;
this.flipY = false;
this.needsUpdate = true;
}
DataTexture2DArray.prototype = Object.create( Texture.prototype );
......
......@@ -27,6 +27,9 @@ function DataTexture3D( data, width, height, depth ) {
this.generateMipmaps = false;
this.flipY = false;
this.needsUpdate = true;
}
DataTexture3D.prototype = Object.create( Texture.prototype );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册