Fadeout problem with YEP_CoreEngine on Android

● ARCHIVED · READ-ONLY
Started by RATISOFT 5 posts View original ↗
  1. Hello,

    I have a huge problem with fadeout.

    See the screen:

    MZNZUYL.png

    When fadeout, half of screen does that but other half doesn't. I've figured out (by much tests with turning off all plugins...) the problem is with YEP_CoreEngine which is...the most important plugin on my project because without it, it will be unplayable.

    How to fix it?

    The working project is on: http://ag-corner.com/play/pg/start (It's the same one but opened on browser...works everything perfect) so click on credits to see the difference between above screenshot.
  2. Are you certain the problem is with that plugin?  It works fine when the plugin is disabled?
  3. Yes, as I said above I've turned off all plugins and turn them on one by one to see with what is the problem. Without YEP plugin it works...
  4. Moving to Javascript/Plugin Support
  5. I've figured out the problem is with the following piece of code:

    //=============================================================================// ScreenSprite//=============================================================================Yanfly.Core.ScreenSprite_initialize = ScreenSprite.prototype.initialize;ScreenSprite.prototype.initialize = function() { Yanfly.Core.ScreenSprite_initialize.call(this); this.scale.x = Graphics.width * 2; this.scale.y = Graphics.height * 2; this.anchor.x = 0.5; this.anchor.y = 0.5; this.x = Graphics.boxWidth / 2; this.x = Graphics.boxHeight / 2;};Without it it works fine ^^