Follow along with the video below to see how to install our site as a web app on your home screen.
注意事項: This feature may not be available in some browsers.
Yanfly.Core.Sprite_Animation_setup = Sprite_Animation.prototype.setup;
Sprite_Animation.prototype.setup = function(target, animation, mirror, delay) {
Yanfly.Core.Sprite_Animation_setup.call(this, target, animation, mirror, delay);
var baseW = 816;
var baseH = 624;
var scaleX = Yanfly.Param.ScreenWidth / baseW;
var scaleY = Yanfly.Param.ScreenHeight / baseH;
var scale = Math.min(scaleX, scaleY);
this.scale.x = scale;
this.scale.y = scale;
};