From dff3b9fd018831a235985fff529c7efde7bd736b Mon Sep 17 00:00:00 2001 From: Lewy Blue Date: Sat, 5 Nov 2016 23:09:44 +0000 Subject: [PATCH] removed unused texture.sourceFile property (#10024) --- docs/api/textures/Texture.html | 5 ----- src/textures/Texture.js | 1 - 2 files changed, 6 deletions(-) diff --git a/docs/api/textures/Texture.html b/docs/api/textures/Texture.html index fc3d5858d7..24d766b94a 100644 --- a/docs/api/textures/Texture.html +++ b/docs/api/textures/Texture.html @@ -55,11 +55,6 @@ as long as video is playing - the [page:VideoTexture VideoTexture] class handles this automatically. -

[property:string sourceFile]

-
- This property is currently unused. -
-

[property:array mipmaps]

Array of user-specified mipmaps (optional). diff --git a/src/textures/Texture.js b/src/textures/Texture.js index af1b64912d..0bafea9048 100644 --- a/src/textures/Texture.js +++ b/src/textures/Texture.js @@ -17,7 +17,6 @@ function Texture( image, mapping, wrapS, wrapT, magFilter, minFilter, format, ty this.uuid = _Math.generateUUID(); this.name = ''; - this.sourceFile = ''; this.image = image !== undefined ? image : Texture.DEFAULT_IMAGE; this.mipmaps = []; -- GitLab