Last active
October 8, 2023 14:27
-
-
Save triacontane/a64afa3f6cf1d4464d31267be768d4d2 to your computer and use it in GitHub Desktop.
オプションウィンドウの横幅を自由に変更する。(RPGツクールMV)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*: | |
* @plugindesc オプション画面のウィンドウの横幅を変更するプラグイン | |
* @author ChatGPT | |
* | |
* @param Window Width | |
* @desc オプション画面のウィンドウの横幅 | |
* @type number | |
* @default 400 | |
* | |
* @help | |
* このプラグインを使うと、オプション画面のウィンドウの横幅を | |
* プラグインのパラメータで指定した値に変更できます。 | |
*/ | |
(function() { | |
var parameters = PluginManager.parameters('OptionWindowWidth'); | |
var windowWidth = Number(parameters['Window Width'] || 400); | |
Window_Options.prototype.windowWidth = function() { | |
return windowWidth; | |
}; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ChatGPTが作りました。