All DataTextures needs updates at start
@@ -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 ) {
DataTexture3D.prototype = Object.create( Texture.prototype );