sdfsdfs
This commit is contained in:
25
node_modules/pixi.js/lib/assets/cache/parsers/cacheTextureArray.js
generated
vendored
Normal file
25
node_modules/pixi.js/lib/assets/cache/parsers/cacheTextureArray.js
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
'use strict';
|
||||
|
||||
var Extensions = require('../../../extensions/Extensions.js');
|
||||
var Texture = require('../../../rendering/renderers/shared/texture/Texture.js');
|
||||
|
||||
"use strict";
|
||||
const cacheTextureArray = {
|
||||
extension: {
|
||||
type: Extensions.ExtensionType.CacheParser,
|
||||
name: "cacheTextureArray"
|
||||
},
|
||||
test: (asset) => Array.isArray(asset) && asset.every((t) => t instanceof Texture.Texture),
|
||||
getCacheableAssets: (keys, asset) => {
|
||||
const out = {};
|
||||
keys.forEach((key) => {
|
||||
asset.forEach((item, i) => {
|
||||
out[key + (i === 0 ? "" : i + 1)] = item;
|
||||
});
|
||||
});
|
||||
return out;
|
||||
}
|
||||
};
|
||||
|
||||
exports.cacheTextureArray = cacheTextureArray;
|
||||
//# sourceMappingURL=cacheTextureArray.js.map
|
Reference in New Issue
Block a user