Search found 3 matches

by Bnig98JR
Thu Sep 09, 2021 5:00 pm
Forum: Ren'Py Questions and Announcements
Topic: How to change the font only in the name box?
Replies: 1
Views: 552

How to change the font only in the name box?

I'm looking to make the font in the name box different than the regular dialogue, how would I go about this?
by Bnig98JR
Thu Sep 09, 2021 4:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Conditional staements for Image Buttons
Replies: 2
Views: 348

Re: Conditional staements for Image Buttons

Ocelot wrote: Sat Sep 04, 2021 4:52 pm If you need button to appear only if certain condition is satisfied, it is straightforward:

Code: Select all

screen inv():
    if certain_condition:
        imagemutton <...>
Got it, works perfectly, thank you!
by Bnig98JR
Sat Sep 04, 2021 3:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Conditional staements for Image Buttons
Replies: 2
Views: 348

Conditional staements for Image Buttons

How would i go about making a screen that will display a certain image button only if a condition has been fulfilled? I'm trying to make an inventory screen where if a certain flag is raised an image will be shown, otherwise it is blank.