- Oct 14, 2021
- 626
- 2,808
I'm porting my Ren'py game over to Android and I've got just one problem left to solve. When the game asks the player to input a first name, the keyboard covers up whatever is being typed in by the player. I've read that the solution to this is to move the input upwards, but I have not been able to figure out how to implement that solution. Any assistance would be appreciated. Here is the code I've got:
Code:
xx "In {i}Leaving DNA{/i}, you will play the role of Assistant District Attorney Rockford."
$ mc_name = renpy.input("What is your first name? (leave blank for default)", length=16)
$ mc_name = mc_name.strip()
if not mc_name:
$ mc_name = "John"
xx "Your name is [mc_name] Rockford."