diff --git a/src/core/textures/Texture.js b/src/core/textures/Texture.js index b40d530..c6a4433 100644 --- a/src/core/textures/Texture.js +++ b/src/core/textures/Texture.js @@ -486,8 +486,10 @@ /** * An empty texture, used often to not have to create multiple empty textures. + * Can not be destroyed. * * @static * @constant */ Texture.EMPTY = new Texture(new BaseTexture()); +Texture.EMPTY.destroy = function() {}