How to put default name into input line when you let player decide how to name a character?
All I can find is empty space and if left empty the name will remain default.
$ m = renpy.input("Hi! My name is... ")
$ m = m.strip()
if m == "":
$ m="defaultname"
But it's not good enough.
I want player to see what name did I give to a character before they decide to change it.
Is it even possible? Thanks
All I can find is empty space and if left empty the name will remain default.
$ m = renpy.input("Hi! My name is... ")
$ m = m.strip()
if m == "":
$ m="defaultname"
But it's not good enough.
I want player to see what name did I give to a character before they decide to change it.
Is it even possible? Thanks