How to make a day counter at the top of the screen?
Posted: Mon Nov 16, 2020 5:42 pm
How do I create a displayable at the top of the screen on top of everything that shows the amount of days currently passed?
Supporting creators of visual novels and story-based games since 2003.
https://lemmasoft.renai.us/forums/
Code: Select all
init python:
config.layers.append("top")
default persistent.days_passed = 0
screen top():
layer "top"
text str(persistent.days_passed)
label splashscreen:
show screen top
return