Hello hello currently using this in my game but for some reason in the android build the narrator text clips/disappears does anyone have a solution for this? thanks in advance :))
Viewing post in yet another phone for renpy comments
Hello hello sorry for late reply but i used this
if renpy.variant("small"): ###FIXED FOR ANDROID
xpos -686 # adjust this number as you see fit
else:
xpos -335
basically find the code for the narrator text (should be easy its marked by a comment already) and replce the xpos with this
(Credit to the original guy who made this solution)
THANK YOU!!
If anyone else has an issue with their MC text being weird on android, I used the same thing for the narrator text fix here, but on this line of code (scroll a little bit down from where narrator text was edited):
if d.who == MC_Name :
color "#FFF"
text_align 1.0
if renpy.variant("small"):
xpos -1055 #FIXED FOR ANDROID
else:
xpos -580