You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This is called due to renpy's screen cache. Any modifications to screens with an enabled cache will fail!
12
-
ml.DisableSCache()
13
-
14
-
# This is called after all mods are loaded, preventing us from getting a partial list of mods (say, if core was loaded before myMod1).
15
-
# Rpy python globals are stored in renpy.python.store_dicts["store"], so to access our data from the screen later, we need to put it in this dictionary.
# Hook every point where the chapter is changed and set mod_currentChapter to the integer value of the current chapter. This will allow route mods to make comparisons.
# This is called due to renpy's screen cache. Any modifications to screens with an enabled cache will fail!
17
+
ml.DisableSCache()
18
+
19
+
# Hook every point where the chapter is changed and set mod_currentChapter to the integer value of the current chapter. This will allow route mods to make comparisons.
# This is called after all mods are loaded, preventing us from getting a partial list of mods (say, if core was loaded before myMod1).
49
+
# Rpy python globals are stored in renpy.python.store_dicts["store"], so to access our data from the screen later, we need to put it in this dictionary.
0 commit comments