raise RuntimeWarning("Your Ren'Py launcher is outdated, the current minimal requirement is 7.4.0.1006+\nPlease perform an update and try launching the game again.")
from renpy.uguu import glGetString, GL_VENDOR, GL_RENDERER, GL_VERSION
def get_gpu_info():
try:
info = "\n".join([glGetString(GL_VENDOR), glGetString(GL_RENDERER), glGetString(GL_VERSION)])
except:
info = "ERR: Unknown or incompatible driver."
return info
def get_renderer():
return "DirectX" if preferences.renderer == "angle2" else "OpenGL"
for img, box in sorted(whitespace_dict.iteritems()):
f.write(u"{}:{},{},{},{}\n".format(img, *box))
print "\rCalculating whitespace... Done!"
return False
label missing_label():
$ renpy.choice_for_skipping()
$ err_msg1 = systemerror[0]
$ err_msg2 = systemerror[1]
"{color=#7a0000}System{/color}" "Uh-oh. Looks like you've encountered a bug. Don't worry, we will try to return you back to the office after displaying the error message, your save file won't be affected."
"{color=#7a0000}System{/color}" "{color=#7a0000}Error:{/color} [err_msg1] '{color=#7a0000}[err_msg2]{/color}'\n\n\n{size=-4}You can report this bug on our {a=https://discord.gg/7PD57yt}discord{/a}.{/size}"
$ active_girl = None
$ systemerror = [None, None]
jump main_room
label missing_return():
$ renpy.choice_for_skipping()
"{color=#7a0000}System{/color}" "Uh-oh. Looks like you've encountered a bug. Don't worry, we will try to return you back to the office after displaying the error message, your save file won't be affected."
"{color=#7a0000}System{/color}" "{color=#7a0000}Error:{/color} Point of no return.\n\n\n{size=-4}You can report this bug on our {a=https://discord.gg/7PD57yt}discord{/a}.{/size}"
$ active_girl = None
jump main_room
screen placeholder():
tag cg
zorder 16 # above dolls
add Placeholder("bg")
add Placeholder("girl")
init 2000 python hide:
def set_screen_layer(layer, *screens):
for scr_name in screens:
for _, scr in renpy.display.screen.get_all_screen_variants(scr_name):