init offset = 1 screen choice(items): style_prefix "choice" if len(items) == 1: timer 0.5 action items[0].action else: $ choice_hotkey_text = "" vbox: for n, i in enumerate(items, 1): if renpy.variant("pc"): $ choice_hotkey_text = "{size=14}" + str(n) + "{/size} " key str(n) action i.action textbutton choice_hotkey_text + i.caption action i.action