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.
Viewing post in Alternative name input comments
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);