Search found 2 matches

by darthi86
Fri Jan 08, 2021 11:31 am
Forum: Ren'Py Questions and Announcements
Topic: Simple script for a day/night cycle, or rather a morning, noon, evening & night cycle
Replies: 21
Views: 13423

Re: Simple script for a day/night cycle, or rather a morning, noon, evening & night cycle

Hi! I'm also new to python. I used the code of kivik and so far everything is working. I want to show a HUD, where the Time and the Weekday are shown. So far I did this: screen day_time_map: zorder 103 if [clock.time]=="morning": add Transform("morning.png", xpos=130, ypos=62) i...
by darthi86
Fri Jan 08, 2021 10:51 am
Forum: Ren'Py Questions and Announcements
Topic: Simple script for a day/night cycle, or rather a morning, noon, evening & night cycle
Replies: 21
Views: 13423

Re: Simple script for a day/night cycle, or rather a morning, noon, evening & night cycle

Hi! I'm also new to python. I used the code of kivik and so far everything is working. I want to show a HUD, where the Time and the Weekday are shown. So far I did this: screen day_time_map: zorder 103 if [clock.time]=="morning": add Transform("morning.png", xpos=130, ypos=62) if...