Last active
June 23, 2019 05:59
-
-
Save triacontane/115cbff8953266279004eee608e68486 to your computer and use it in GitHub Desktop.
ウィンドウの中身だけをずらすサンプルです。
This file contains hidden or 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
(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