Skip to content

Instantly share code, notes, and snippets.

@triacontane
Created April 10, 2021 11:37
Show Gist options
  • Save triacontane/4f23812e4b1ab79c843f6576b73a6bc0 to your computer and use it in GitHub Desktop.
Save triacontane/4f23812e4b1ab79c843f6576b73a6bc0 to your computer and use it in GitHub Desktop.
var _Window_SavefileList_itemRect = Window_SavefileList.prototype.itemRect;
Window_SavefileList.prototype.itemRect = function(index) {
var rect = _Window_SavefileList_itemRect.apply(this, arguments);
rect.height -= 100;
return rect;
};
var _Window_SavefileList_itemHeight = Window_SavefileList.prototype.itemHeight;
Window_SavefileList.prototype.itemHeight = function() {
return _Window_SavefileList_itemHeight.apply(this, arguments) + 100;
};
@triacontane
Copy link
Author

ウィンドウの余白を指定

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment