diff --git a/src/core/textures/Texture.js b/src/core/textures/Texture.js index e70804e..133a59b 100644 --- a/src/core/textures/Texture.js +++ b/src/core/textures/Texture.js @@ -592,6 +592,7 @@ */ Texture.EMPTY = new Texture(new BaseTexture()); removeAllHandlers(Texture.EMPTY); +removeAllHandlers(Texture.EMPTY.baseTexture); /** * A white texture of 10x10 size, used for graphics and other things @@ -602,3 +603,4 @@ */ Texture.WHITE = createWhiteTexture(); removeAllHandlers(Texture.WHITE); +removeAllHandlers(Texture.WHITE.baseTexture);