Search found 2 matches

by TAZZACORN
Wed Jun 17, 2020 4:01 am
Forum: Ren'Py Questions and Announcements
Topic: Switching between different character sprites without "hide"
Replies: 9
Views: 645

Re: Switching between different character sprites without "hide"

Are you sure you only want one character on the screen at once?
for example you can make it that the current character speaking is highlighted and the other characters are darkened a bit.
by TAZZACORN
Wed Jun 17, 2020 3:58 am
Forum: Ren'Py Questions and Announcements
Topic: Help with conditional IF statements (In regards to time of day))
Replies: 1
Views: 269

Help with conditional IF statements (In regards to time of day))

So I'm using a day and night system in my game: default day = 1 default time_of_day = ["morning", "evening", "night"] default end_of_day = time_of_day[-1] # this can automatically pick up the last element of time_of_day as above. default money = 200 label start: label a...