Search found 4 matches

by birdtrappedinacage
Tue May 04, 2021 7:09 pm
Forum: Ren'Py Questions and Announcements
Topic: Transitioning Background When Button is Hovered
Replies: 1
Views: 774

Transitioning Background When Button is Hovered

Hello! I found a post on this topic before but it didn't exactly help me and wasn't quite what I was looking for. I was wondering if there was a simple way (preferably using image buttons) to have the background of a screen fade to a new background when a specific button is hovered. I was hoping to ...
by birdtrappedinacage
Tue Apr 27, 2021 5:59 am
Forum: Ren'Py Questions and Announcements
Topic: Player Name With Toggled Buttons Help!
Replies: 4
Views: 511

Re: Player Name With Toggled Buttons Help!

Clear is pretty simple textbutton "Clear" action SetVariable("pname", "") Backspace is a bit more tricky. This could be one way. textbutton "Backspace" action Call("backspace") -------------- label backspace: $ pname = pname[:-1] call screen multich...
by birdtrappedinacage
Mon Apr 26, 2021 2:57 am
Forum: Ren'Py Questions and Announcements
Topic: Player Name With Toggled Buttons Help!
Replies: 4
Views: 511

Re: Player Name With Toggled Buttons Help!

default pname="" screen multichoice(): vbox: imagebutton idle "gui/a.png" action SetVariable("pname",p name + "a") imagebutton idle "gui/b.png" action SetVariable("pname", pname + "b") imagebutton idle "gui/c.png" actio...
by birdtrappedinacage
Fri Apr 23, 2021 8:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Player Name With Toggled Buttons Help!
Replies: 4
Views: 511

Player Name With Toggled Buttons Help!

Hello! For my own personal project I am working on, I wanted to recreate a screen similar to the one below. I have all the assets (the background, the buttons which are in the english alphabet not Japanese, etc.) but I am just stumped on the coding for the actual implementation of it. kR1tUgy.png My...