crxtrdude / pywright

Python game engine for running visual novel games similar to the Phoenix Wright series
Other
5 stars 3 forks source link

Finding way to stop auto capitalization of names #196

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
From TheDoctor:
"Got a question about the little blue box showing which character is speaking. 
I noticed that it always capitalizes the first letter of the character's name 
and forces the rest of the name into lowercase. This can be a problem if you 
want the character name to read as "MacGyver" or "von Karma" for example.

Does anyone know how to make the nametags show up with the exact capitalization 
you want?"

This feature was there since the beginning of PyWright, which quite frankly 
didn't make sense.

Original issue reported on code.google.com by earlAcda...@gmail.com on 18 Aug 2015 at 2:59

GoogleCodeExporter commented 8 years ago
Literally took two seconds to fix this. For 0.989, you will need to use the 
nametag= argument after calling the char command. Before, names were 
capitalized, no matter if nametag was used or not. For von Karma, use "char X 
nametag=von_Karma". Note the underscore. For MacGuyver, use "char X 
nametag=MacGuyver". For backwards compatibility, the path name still gets 
capitalized by default.

Original comment by earlAcda...@gmail.com on 18 Aug 2015 at 3:05