Search found 6 matches

by Insane33
Thu Feb 17, 2022 4:09 am
Forum: Ren'Py Questions and Announcements
Topic: Replacing Quick Menu with imagebutton's
Replies: 2
Views: 366

Re: Replacing Quick Menu with imagebutton's

At the bottom of the game screen on the left-hand side there are "textbuttons" for history, save, etc..... On the right-hand side there are imagebuttons for skip, rollback, etc... I did provide hover and idle images, however none of my images show up on the screen, only the default text/im...
by Insane33
Wed Feb 16, 2022 8:17 pm
Forum: Ren'Py Questions and Announcements
Topic: Replacing Quick Menu with imagebutton's
Replies: 2
Views: 366

Replacing Quick Menu with imagebutton's

Ok, I tried searching within the forum for an answer and had issues with the page not working. I have read a few posts regarding this issue, but they are nearly a decade old so the code has changed to some degree. I have created several image buttons to use in place of the "quick menu" at ...
by Insane33
Wed Feb 16, 2022 5:05 pm
Forum: Ren'Py Questions and Announcements
Topic: How to select different photo sets based on a question.
Replies: 6
Views: 486

Re: How to select different photo sets based on a question.

I believe I understand. To save on coding, I can remove the word "default" and replace it with "$" and simply assign the variables. At the beginning of my code after the first start label. label start: $ x = 0 $ y = True $ z = False and so on or do it in python. It is a lot of va...
by Insane33
Wed Feb 16, 2022 9:55 am
Forum: Ren'Py Questions and Announcements
Topic: How to select different photo sets based on a question.
Replies: 6
Views: 486

Re: How to select different photo sets based on a question.

I take that to mean that since I did jump to start that I would have to use an init: block and define the variables instead of using default? I guess I do need one variable not changed the $ restart += 1 variable. It determines how many times a player has restarted from within the game. It then call...
by Insane33
Wed Feb 16, 2022 12:52 am
Forum: Ren'Py Questions and Announcements
Topic: How to select different photo sets based on a question.
Replies: 6
Views: 486

Re: How to select different photo sets based on a question.

Thanks for the response. They are defined in my script.rpy. The code from above was partly from my script.rpy, the rest was from images.rpy. All my variables are defined prior to the first question in the game. I had to remove the MaxScale/MinScale arguments, the maxthumbx/y, and substitute the vari...
by Insane33
Mon Feb 14, 2022 11:28 am
Forum: Ren'Py Questions and Announcements
Topic: How to select different photo sets based on a question.
Replies: 6
Views: 486

How to select different photo sets based on a question.

Hello All, I am having a problem with image set selections. In the game I am writing I am offering players the choice to play as a Black Male with his primary interest being a white woman and her daughter or to play as a White man with his primary in being a Black woman and her daughter. I set up my...