Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Nice it worked Will take a look at the Persistent alignment thing. But, for now, you may be able to solve the problem by putthing those lines on the end of my plugin(before the last bracket } ):

Window_Base.prototype.setDefaultTextAlignment = function() {
    this.currentAlign = 'center'
}
Window_Command.prototype.setDefaultTextAlignment = function() {
    this.currentAlign = 'center'
}

Also by changing any code like this:

this.currentAlign = 'left'

to ths:

this.currentAlign = 'center'

See if that will help.

(+1)

Thank you very much! :)