Hello, I'm using your plugin and it's really great one (An awesome on, shoud I say)
I just wanted to share a little bug I had, where the namebox of message box would not shown at the correct size. Otherwise, I recommend 1000% this plugin, it's a really powerfull one.
(By exemple if actor 10 was "Seraphina", \N[10] would transcribe a Seraphina but the name box would only show "Seraph")
This was due to the override of "Window_NameBox.prototype.windowWidth", which I modified a little, using the "source code" of RPG MZ :
const _Window_NameBox_windowWidth = Window_NameBox.prototype.windowWidth;
Window_NameBox.prototype.windowWidth = function () {
if (this._name) {
const cleanName = (translations[this._name] || this._name).replace(/<[^>]*>/g, '');
const textWidth = this.textSizeEx(cleanName).width;
const padding = this.padding + this.itemPadding();
const width = Math.ceil(textWidth) + padding * 2;
return Math.min(width, Graphics.boxWidth);
} else {
return _Window_NameBox_windowWidth.call(this);
}
};
