how the heck do i put two screen input submit boxes simultaneously?
for example, i want the first name and last name submit box to appear at the same time. i have it where they show up one at a time. i want them next to each other.
*BONUS,, how do i remove the text box for this part as weLL bc "hide window" doesnt work*
renpy.rpy
Code: Select all
$ first_name = renpy.input("","Jamie", length=10)or _("Jamie")
$ lastName = renpy.input("","Williams", length=10)or _("Williams")Code: Select all
screen input(prompt):
window style "input_window":
has vbox xalign 0.34 yalign -2.1
text prompt style "input_prompt"
input id "input" style "input_text" color "#000"
use quick_menu 


