- Joined
- Dec 19, 2021
- Messages
- 91
- Reaction score
- 26
- First Language
- german
- Primarily Uses
- RMMV
The mirror Animations (enemy skill animations) were bugged because of this. To solve my problem, I simply turned off the YEP_X_CoreUpdateOpt-Plugin.
Wrong Code: Line 8174-8176:
Correct Code from rpg_sprites.js line 1428-1432:
Wrong Code: Line 8174-8176:
Code:
if (this._mirror) {
sprite.x *= -1;
}
Correct Code from rpg_sprites.js line 1428-1432:
Code:
if(mirror){
sprite.x *= -1;
sprite.rotation *= -1;
sprite.scale.x *= -1;
}