Skip to content

Instantly share code, notes, and snippets.

@triacontane
Last active June 23, 2019 05:59
Show Gist options
  • Save triacontane/115cbff8953266279004eee608e68486 to your computer and use it in GitHub Desktop.
Save triacontane/115cbff8953266279004eee608e68486 to your computer and use it in GitHub Desktop.
ウィンドウの中身だけをずらすサンプルです。
(function() {
'use strict';
var offsetY = 10;
var _Window_Help__refreshContents = Window_Help.prototype._refreshContents;
Window_Help.prototype._refreshContents = function() {
_Window_Help__refreshContents.apply(this, arguments);
this._windowContentsSprite.y += offsetY;
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment