Extract patches.json
in www
folder:
Probably should be added to JoiMV plugin
PIXI.glCore.VertexArrayObject.prototype.addAttribute = function(buffer, attribute, type, normalized, stride, start)
{
// Fix for "Uncaught TypeError: Cannot read property 'location' of undefined"
// Source: https://github.com/pixijs/pixijs/issues/4476#issuecomment-346847049
if (!attribute) {
return this;
}
this.attributes.push({
buffer: buffer,
attribute: attribute,
location: attribute.location,
type: type || this.gl.FLOAT,
normalized: normalized || false,
stride: stride || 0,
start: start || 0
});
this.dirty = true;
return this;
};
Two ‘missing’ Spine models, game’s fault ig?
mama_t01
only has JSON file, should be removed from PictureSpine array
ene_2b
called by the wrong filename in PictureSpine array (specified as ene_2b
)
Here errors from PC

Extract patches.json
in game folder: