Add Big changes

Indent the script a little with labels in particular.
Call instead of jump for checking endings.
Add in new textboxes and adjust positioning.
Add menu at the end of the story similar to sluggish.
Add Pan skip.
This commit is contained in:
Nutbuster 2022-03-05 15:47:07 +11:00
parent 8044761289
commit 58891b9e49
29 changed files with 615 additions and 649 deletions

56
.gitignore vendored Normal file
View File

@ -0,0 +1,56 @@
# macOS-related files
.DS_Store
.AppleDouble
.LSOverride
# Windows-related files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
[Dd]esktop.ini
#Textfile cruft
/project.json
/traceback.txt
/errors.txt
/log.txt
log.txt
errors.txt
traceback.txt
#Vim swap files
.sw?
*~
*.bak
#save files & cache files
/game/saves/
/game/saves/*
/game/cache/*
/game/cache
saves
tmp
cache
env
#binary files
*.rpyc
*.rpyb
*.rpymc
*.pyc
*.pyo
#Vim (best text editor) swap files
.sw?
#binary files
*.rpyc
*.rpymc
#backups
*.bak
#android
.android.json

View File

@ -1,26 +0,0 @@
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/script.rpy", line 99: if statement expects a non-empty block.
if lewd:
^
File "game/script.rpy", line 101: expected statement.
else:
^
File "game/script.rpy", line 1228: if statement expects a non-empty block.
if lewd:
^
File "game/script.rpy", line 1230: expected statement.
else:
^
File "game/script.rpy", line 1346: else clause expects a non-empty block.
else:
^
Ren'Py Version: Ren'Py 7.4.9.2142
Fri Mar 4 11:49:42 2022

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,9 +0,0 @@
renpy.alpha renpy.texture
renpy.alpha renpy.geometry renpy.texture
renpy.solid
renpy.texture
renpy.ftl
renpy.dissolve renpy.dissolve
renpy.dissolve renpy.geometry
renpy.geometry renpy.texture
renpy.geometry renpy.solid

View File

@ -51,6 +51,10 @@ define gui.hover_muted_color = u'#7a003d'
define gui.text_color = '#ffffff'
define gui.interface_text_color = '#00000000'
define gui.text_color_outline = '#000'
## The outline
define gui.dialogue_text_outlines = [ (absolute(1.0), gui.text_color_outline, 0, 0) ]
## Fonts and Font Sizes ########################################################

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 105 KiB

After

Width:  |  Height:  |  Size: 119 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

47
log.txt
View File

@ -1,47 +0,0 @@
Fri Mar 4 11:57:05 2022
Darwin-17.7.0-x86_64-i386-64bit
Ren'Py 7.4.9.2142
Bootstrap to the start of init.init took 0.16s
Early init took 0.01s
Loader init took 0.06s
Loading error handling took 0.06s
Loading script took 1.04s
Loading save slot metadata. took 0.07s
Loading persistent took 0.00s
Importing _renpysteam: ImportError('No module named _renpysteam',)
Running init code took 0.16s
Loading analysis data took 0.04s
Analyze and compile ATL took 0.00s
Index archives took 0.00s
Backing up script files to '/Users/FieldFoxMk6/Library/RenPy/backups/She Likes You Alotl':
Dump and make backups. took 0.09s
Cleaning cache took 0.00s
Making clean stores took 0.00s
Initial gc. took 0.03s
DPI scale factor: 1.000000
Creating interface object took 0.00s
Cleaning stores took 0.00s
Init translation took 0.05s
Build styles took 0.01s
Load screen analysis took 0.00s
Analyze screens took 0.02s
Save screen analysis took 0.05s
Prepare screens took 0.09s
Save pyanalysis. took 0.00s
Save bytecode. took 0.03s
Running _start took 0.00s
Performance test:
Interface start took 0.33s
Initializing gl2 renderer:
primary display bounds: (0, 0, 1440, 900)
swap interval: 1 frames
Windowed mode.
Vendor: 'Intel Inc.'
Renderer: 'Intel(R) HD Graphics 6000'
Version: '2.1 INTEL-10.36.32'
Display Info: None
Screen sizes: virtual=(1920, 1080) physical=(1338, 753) drawable=(1338, 753)
Maximum texture size: 4096x4096

View File

@ -1,28 +0,0 @@
I'm sorry, but an uncaught exception occurred.
While running game code:
File "game/script.rpy", line 75, in script
scene Farelie01 at Pan((0, 1031), (0, 0), 10.0) with dissolve(0, 1031)
TypeError: 'Dissolve' object is not callable
-- Full Traceback ------------------------------------------------------------
Full traceback:
File "game/script.rpy", line 75, in script
scene Farelie01 at Pan((0, 1031), (0, 0), 10.0) with dissolve(0, 1031)
File "/Applications/renpy-7.4.9-sdk/renpy/ast.py", line 1443, in execute
renpy.exports.with_statement(trans, paired)
File "/Applications/renpy-7.4.9-sdk/renpy/exports.py", line 1682, in with_statement
return renpy.game.interface.do_with(trans, paired, clear=clear)
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 2752, in do_with
clear=clear)
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 3315, in interact
repeat, rv = self.interact_core(preloads=preloads, trans_pause=trans_pause, pause=pause, pause_start=pause_start, **kwargs)
File "/Applications/renpy-7.4.9-sdk/renpy/display/core.py", line 3674, in interact_core
new_widget=layers_root)
TypeError: 'Dissolve' object is not callable
Darwin-17.7.0-x86_64-i386-64bit
Ren'Py 7.4.9.2142
She Likes You Alotl 1.0
Thu Mar 3 17:16:24 2022