Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

Hello, thank you for the awesome work! It really helps me but i have a question.

is it possible to change the text size of the dialogue on the phone?

(2 edits)

if you go to the PhoneTexting.rpy file there is a screen called nvl_phonetext. look for vbox about 42 lines down. now find text d.who and simply add the size attribute, like this:

text d.who:
    size 30

this changes the characters name size displayed on the phone, if you liked the size before, simply don't add the code above.

for the text sizes in the messages it's basically the same except it's text d.what. you can find this a little further down. it already has attributes assigned, so just add the size underneath those.

text d.what:
    pos (0,0)
    xsize 350
    slow_cps False
    size 28

the sizes i put in there are just suggestions, you can put in whatever you like best.

hope this helped!