じ☆ve冰风 发表于 7 天前

Resolution Changer v0.1

First of all, i'm not good at english, please understand it


I made a simple resolution changer plugin for RPG MV.

There might be some bugs, but still it works well!

Any opinions please 


//=============================================================================// ResolutionChanger.js//=============================================================================/*: * @plugindesc Changing game resolution easily. * @author superrogin * * @param Width * @desc Width of the game screen. * @default 816 * * @param Height * @desc Height of the game screen. * @default 624 * * @help Ask superrogin@gmail.com *//*:ko * @plugindesc ê²ì í´ìë를 ì½ê² ë°ê¿ ì ììµëë¤. * @author superrogin * * @param Width * @desc ê²ì ê°ë¡ í´ìë * @default 816 * * @param Height * @desc ê²ì ì¸ë¡ í´ìë * @default 624 * * @help ì§ë¬¸ : superrogin@gmail.com */(function() {    var parameters = PluginManager.parameters('ResolutionChanger');                var wdth = Number(parameters['Width'] || 816);    var hght = Number(parameters['Height'] || 624);        var _Scene_Base_create = Scene_Base.prototype.create;        Scene_Base.prototype.create = function() {                _Scene_Base_create.call(this);                Graphics.width = wdth;                Graphics.height = hght;                };})();ResolutionChanger.zip


本贴来自国际rpgmaker官方论坛作者:superrogin处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/resolution-changer-v0-1.46524/
页: [1]
查看完整版本: Resolution Changer v0.1