Comments

Log in with itch.io to leave a comment.

Thank you for this plugin. Is there a way I can move the name box downward in free type mode? Like move it to the middle of the screen for example.

You can try this patch.

(function(alias){
Window_NameEdit.prototype.toggleInputMode = function(){
  alias.apply(this, arguments);
  if(Window_NameEdit._inputMode){
    this.$y = this.y;
    this.y = (Graphics.boxHeight - this.height) / 2;
  }else{
    this.y = this.$y || this.y;
  }
};
})(Window_NameEdit.prototype.toggleInputMode);

I was looking for this because I failed to make a Korean input tool. Thanks.