2024-04-05 05:40:52 +00:00
|
|
|
## Special Labels ##############################################################
|
|
|
|
##
|
|
|
|
## These are special labels that Ren'Py automatically recognizes if they
|
|
|
|
## are included with the game. Read more here:
|
|
|
|
## https://www.renpy.org/doc/html/label.html#special-labels
|
|
|
|
##
|
|
|
|
|
|
|
|
## Splash Screen ###############################################################
|
|
|
|
##
|
|
|
|
## Put the splash screen code here. It runs when the game is launched.
|
|
|
|
##
|
2024-04-09 08:55:31 +00:00
|
|
|
# label splashscreen():
|
|
|
|
# return
|
2024-04-05 05:40:52 +00:00
|
|
|
|
|
|
|
## After Load ##################################################################
|
|
|
|
##
|
|
|
|
## Adjust any variables etc in the after_load label
|
|
|
|
## Also consider: define config.after_load_callbacks = [ ... ]
|
|
|
|
##
|
2024-04-09 08:55:31 +00:00
|
|
|
# label after_load():
|
|
|
|
# return
|