Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created March 16, 2023 23:53
Show Gist options
  • Save triacontane/ad8d8ae950aa0c49b39888e89e73d8e0 to your computer and use it in GitHub Desktop.
Save triacontane/ad8d8ae950aa0c49b39888e89e73d8e0 to your computer and use it in GitHub Desktop.
キー入力でイベントを起動させた場合もタッチUIを表示(GPT-4で出力)
/*:
* @plugindesc Show touch UI for number input when triggered by key input
* @author YourName
*
* @help This plugin does not have any plugin commands.
* Generated by GPT-4
*/
(function() {
var _Window_NumberInput_start = Window_NumberInput.prototype.start;
Window_NumberInput.prototype.start = function() {
_Window_NumberInput_start.call(this);
this.showButtons();
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment