- Jun 2, 2017
- 134
- 67
Well, yeah but at least it is not generic douchebag teen #343255848543 That alone gives an extra point in my book, even if the MC is a "Gopnik" (QSP veterans have seen it all!)MC is not very good for me, he look like a hooligan, but everybody find him "cute" and he just think about how he need to date every girls around.
init python:
screenshotDir = renpy.os.path.expanduser(b"~/Desktop") if renpy.macapp else config.renpy_base
def screenshotList():
return [ renpy.os.path.join( screenshotDir, name ).replace( '\\', '/' ) for name in renpy.os.listdir( screenshotDir ) if name.startswith( "screenshot" ) ]
screen screenshotShown( file ):
default thumb = False
if thumb is False:
imagebutton:
idle im.Scale(file, 100, 100)
action SetScreenVariable( "thumb", True )
else:
add file
textbutton "done":
xalign 0.5
yalign 0.5
action Return()
label start:
$ l = screenshotList()
"[l]"
while len( l ) > 0:
$ a = l.pop( 0 )
"[a]"
call screen screenshotShown( a )
"FINISHED"
if screenshotList() == []
is enough to take care of this.MacOS doesn't work for me, on High SierraI created a custom version of the game containing the following modifications:
I also created android versions:
- Main UI adapted to multiple screen sizes/devices.
- Compressed assets (around 43-83 MB unpacked).
- Cutscene/Animation can be disabled on the first startup of the game and in the settings menu (Needed for low end/old devices).
Win --You must be registered to see the links/You must be registered to see the links/You must be registered to see the links
Linux --You must be registered to see the links/You must be registered to see the links/You must be registered to see the links
MacOS --You must be registered to see the links/You must be registered to see the links/You must be registered to see the links
Android armeabi-v7a --You must be registered to see the links/You must be registered to see the links/You must be registered to see the links
Android x86_x64 --You must be registered to see the links/You must be registered to see the links/You must be registered to see the links
If you encounter any bug or issue, please let me know.
Post here (or send me via pm) the contents of the file "traceback.txt".MacOS doesn't work for me, on High Sierra