Skip to main content

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

Non-Destructive Localization - Plugin for RPG Maker MV/MZ

Auto generate translation file and translate your game without replacing your in-editor text · By Sang Hendrix

[SELF-SOLVED] Name Window Size with Text Commands

A topic by TheDarkLight created Mar 09, 2025 Views: 92 Replies: 3
Viewing posts 1 to 3
(1 edit)


In the two images you can see the plugin resizes the window for the text command for changing color (\c[v]) . Is this intended or is this a bug that can be fixed?

Developer

I don't understand. Which picture is what you desire?

(1 edit)

The one without the white space being generated due to there being a text command.
EMMA is correct

\c[v]NORA is incorrect

(+1)

I fixed it by adding this to the namebox width calculation override:

                cleanName = cleanName.startsWith('\\c[') ? cleanName.replace(/^\\c\[[^\]]*\]/, '') : cleanName;