- Jul 2, 2018
- 145
- 381
That's because the namepop script (ネームポップ) doesn't support regular spaces as I think a space is parsed as a new argument instead of a single string, probably, I can't fully read ruby code.Hey asdafa9, I wanna ask you something. I have a problem with namepop, how did you manage to properly add space on it?
And the result is the character's name wasn't shown on the game.
However, you can use an
You must be registered to see the links
(" ") instead.The problem is... it looks awful in the game because it's too wide, so I've modified the namepop script to replace full-width spaces with regular ones right after its been parsed as a workaround.
At line 73:
Code:
if @namepop != nil
@namepop.gsub!(" ", " ")
end
<namepop Some String> <--- "Some String" gets parsed as a single string because that's not a regular space.
Then, after it's been parsed and loaded, those full-width spaces are replaced by regular ones.
There could be a more proper way to do this, like actually supporting spaces, but I couldn't be bothered to look further into ruby scripting.