Search found 3 matches

by yeikias
Thu Oct 01, 2020 5:20 pm
Forum: Ren'Py Questions and Announcements
Topic: imagemap hotspots in the correct order for an action to occur
Replies: 1
Views: 343

imagemap hotspots in the correct order for an action to occur

I'm trying to have the player enter the passcode on a phone on the screen. They have to click certain hotspots (which would be numbers on the phone) in a certain order in order for an action to occur. For example, the passcode is 1234. I have hotspots for each of the numbers on the imagemap. If they...
by yeikias
Thu Oct 01, 2020 2:02 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] images for imagebutton not showing up?
Replies: 2
Views: 398

Re: images for imagebutton not showing up?

I think the imagemap is being drawn over the buttons, because you placed it on the screen after the imagebutton declaration. Ren'py draws screen elements in the same order you code them, so in this case, the imagebuttons are drawn and placed on the game screen first, then the imagemap is drawn, but...
by yeikias
Thu Oct 01, 2020 12:56 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] images for imagebutton not showing up?
Replies: 2
Views: 398

[SOLVED] images for imagebutton not showing up?

Hello. This is my first time using Ren'py and I am pretty much a beginner at python too. I'm trying to put arrow buttons on the top left and top right of the screen, but for some reason they are not showing up? screen doorview(): modal True add "doorview.png" imagebutton: xalign 0.0 yalign...