File tree 3 files changed +29
-9
lines changed
3 files changed +29
-9
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,7 @@ label day1_meet_lord:
8
8
9
9
show screen lord_book
10
10
11
- show lord smile
12
- with dissolve
11
+ show lord smile with dissolve
13
12
14
13
lord " Ah, you must be the new heir."
15
14
lord " Please come in."
Original file line number Diff line number Diff line change @@ -5,8 +5,7 @@ label day2:
5
5
$ night = True
6
6
scene bg hallway night with dissolve
7
7
8
- show lord worry at center
9
- with dissolve
8
+ show lord worry with dissolve
10
9
11
10
lord " [player_name] !{w=0.3} Are you okay?"
12
11
lord " You look spooked."
Original file line number Diff line number Diff line change 1
- label hallway :
1
+ label hallway (with_dissolve = True ) :
2
2
3
- if night:
4
- scene bg hallway night with dissolve
3
+ if with_dissolve:
4
+ if night:
5
+ scene bg hallway night with dissolve
6
+ else :
7
+ scene bg hallway day with dissolve
5
8
else :
6
- scene bg hallway day with dissolve
9
+ if night:
10
+ scene bg hallway night
11
+ else :
12
+ scene bg hallway day
13
+
14
+ if with_dissolve:
15
+ show lord with dissolve
16
+ else :
17
+ show lord
7
18
8
19
menu :
9
20
" What do you want to do?"
10
21
22
+ " Talk to the Lord" :
23
+ jump hallway_lord
24
+
11
25
" Look around" :
12
26
player " The skies are clear today."
13
- jump hallway
27
+ call hallway( False )
14
28
15
29
" Go elsewhere" :
16
30
jump explore_inside_day
31
+
32
+ label hallway_lord :
33
+
34
+ menu :
35
+ lord " How may I help you?"
36
+
37
+ " Nevermind" :
38
+ call hallway(False )
You can’t perform that action at this time.
0 commit comments