We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ac877b commit 675cb3bCopy full SHA for 675cb3b
1 file changed
src/cache/CacheManager.js
@@ -102,6 +102,15 @@ var CacheManager = new Class({
102
*/
103
this.text = new BaseCache();
104
105
+ /**
106
+ * A Cache storing all html files, typically added via the Loader.
107
+ *
108
+ * @name Phaser.Cache.CacheManager#html
109
+ * @type {Phaser.Cache.BaseCache}
110
+ * @since 3.12.0
111
+ */
112
+ this.html = new BaseCache();
113
+
114
/**
115
* A Cache storing all WaveFront OBJ files, typically added via the Loader.
116
*
@@ -181,6 +190,7 @@ var CacheManager = new Class({
181
190
'shader',
182
191
'audio',
183
192
'text',
193
+ 'html',
184
194
'obj',
185
195
'tilemap',
186
196
'xml'
0 commit comments