@vpmedia/phaser 1.110.0 → 1.111.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -12879,14 +12879,14 @@ var Cache = class {
12879
12879
  * @param {string} key - The unique key for the cache entry to remove.
12880
12880
  */
12881
12881
  removeSpriteSheet(key) {
12882
- delete this._cache.spriteSheet[key];
12882
+ delete this._cache.image[key];
12883
12883
  }
12884
12884
  /**
12885
12885
  * Removes a texture atlas cache entry.
12886
12886
  * @param {string} key - The unique key for the cache entry to remove.
12887
12887
  */
12888
12888
  removeTextureAtlas(key) {
12889
- delete this._cache.atlas[key];
12889
+ delete this._cache.image[key];
12890
12890
  }
12891
12891
  /**
12892
12892
  * Clears all GL textures from the cache.