Every time I want to fight the first boss it always happens like this, is there anyone who can help?
go to line 980 in MPP_EncounterEffect.js and replace this section:
SceneManager.snapTexture = function() {
const stage = this._scene
const width = Graphics.width;
const height = Graphics.height;
const renderTexture = PIXI.RenderTexture.create(width, height);
if (stage) {
const renderer = Graphics.app.renderer;
renderer.render(stage, renderTexture);
stage.worldTransform.identity();
}
return renderTexture;
};
With this ->
SceneManager.snapTexture = function() {
const stage = this._scene
const width = Graphics.width;
const height = Graphics.height;
const renderTexture = PIXI.RenderTexture.create(width, height);
if (stage) {
const renderer = Graphics.app.renderer;
var renderer = render(stage, renderTexture);
stage.worldTransform.identity();
}
return renderTexture;