Hi! I'm having a bit of an issue with the Phone on Android builds, the protagonist's messages don't show up on the screen (only the background block color shows up). It works perfectly on the other builds (PC, Linux, and Mac). Could you help me with that? Let me know if you need more details or screenshots to better understand the issue. Thank you!
Viewing post in yet another phone for renpy comments
Here is a little "hack" that worked for me:
Find these lines in PhoneTexting.rpy:
if d.who == MC_Name:
color "#FFF"
text_align 1.0
xpos -580
else:
color "#000"
Replace the xpos -580 with this:
if renpy.variant("small"):
xpos -1067 # adjust this number as you see fit
else:
xpos -580
Now the whole code should look like this:
if d.who == MC_Name :
color "#FFF"
text_align 1.0
if renpy.variant("small"):
xpos -1067
else:
xpos -580
else:
color "#000"