Fix comand hints on title menu
This commit is contained in:
parent
c07880876a
commit
6b717a39f7
3 changed files with 6 additions and 5 deletions
|
@ -195,7 +195,7 @@ Scene_OmoriTitleScreen.prototype.createCommandHints = function () {
|
|||
this._commandHints = new Sprite(new Bitmap(Math.ceil(Graphics.boxWidth / 2.8), Math.ceil(Graphics.boxHeight / 8)))
|
||||
this.addChild(this._commandHints);
|
||||
this._commandHints.position.set(Graphics.boxWidth - this._commandHints.width, 0);
|
||||
this.refreshCommandHints();
|
||||
//this.refreshCommandHints();
|
||||
//this._commandHints.bitmap
|
||||
}
|
||||
|
||||
|
@ -577,6 +577,8 @@ Scene_OmoriTitleScreen.prototype.initFrameAnimations = function () {
|
|||
Scene_OmoriTitleScreen.prototype.start = function () {
|
||||
// Super Call
|
||||
Scene_BaseEX.prototype.start.call(this);
|
||||
// Refresh command hints on scene start
|
||||
this.refreshCommandHints();
|
||||
// Initialize Frame Animations
|
||||
this.initFrameAnimations();
|
||||
// If Instant Intro Flag is true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue