首次提交莘澜日记项目源码,包含第一章剧情脚本、UI 界面、角色素材及游戏配置。 排除了编译产物(.rpyc)、运行时存档、缓存及敏感密钥文件。 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
88 lines
2.5 KiB
Plaintext
Executable File
88 lines
2.5 KiB
Plaintext
Executable File
# intro.rpy
|
||
label splashscreen:
|
||
scene black
|
||
with Pause(1.0)
|
||
|
||
# 1. 环境铺垫
|
||
show bg school_gate with dissolve:
|
||
zoom 1.2
|
||
linear 5.0 zoom 1.0
|
||
play music "audio/intro_ambient.mp3" fadein 3.0
|
||
|
||
"2029年,上海青澜高中"
|
||
"一所普通的市重点,有着不普通的故事"
|
||
|
||
# 2. 快速剪辑:主角的多个侧面
|
||
show bg classroom_empty with pixellate
|
||
"他是数学课上的王者..."
|
||
|
||
show bg basketball_court with pixellate
|
||
"篮球场上的活跃分子..."
|
||
|
||
show bg computer_lab with pixellate
|
||
"游戏世界的攻略者..."
|
||
|
||
# 3. 引入关键道具/符号
|
||
show phone_screen:
|
||
xalign 0.5 yalign 0.5
|
||
zoom 0.0
|
||
linear 0.5 zoom 1.0
|
||
"当他的生活被放上名为「任懿涛画廊」的网站..."
|
||
|
||
show gallery_website with dissolve:
|
||
xalign 0.5 yalign 0.5
|
||
"标签,比本人传播得更快"
|
||
hide gallery_website with dissolve
|
||
|
||
# 4. 关键冲突提示
|
||
scene bg corridor with dissolve
|
||
show shadow boy at left
|
||
show shadow girl at right
|
||
"重点班 → 普通班"
|
||
"学霸 → 偏科生"
|
||
"独立 → 依赖"
|
||
|
||
# 5. 角色群像闪现(可选,如果立绘已准备好)
|
||
show liuhongyu silhouette at left with dissolve
|
||
show yanhan silhouette at center with dissolve
|
||
show xuwei silhouette at right with dissolve
|
||
"在这段充满矛盾的高二生活中..."
|
||
hide liuhongyu
|
||
hide yanhan
|
||
hide xuwei
|
||
|
||
# 6. 核心问题
|
||
scene black with dissolve
|
||
show text "{size=40}当所有人都通过标签认识你...{/size}" at truecenter with dissolve
|
||
pause 1.5
|
||
hide text
|
||
|
||
show text "{size=40}你该如何认识自己?{/size}" at truecenter with dissolve
|
||
pause 2.0
|
||
hide text
|
||
|
||
# 7. 游戏标题
|
||
scene bg sunset with dissolve
|
||
show text "{size=80}{font=fonts/custom.ttf}青澜日记{/font}{/size}" at truecenter:
|
||
yalign 0.4
|
||
show text "{size=25}——任懿涛的高中恋爱物语——{/size}" at truecenter:
|
||
yalign 0.6
|
||
|
||
play sound "audio/title_appear.wav"
|
||
with hpunch
|
||
pause 3.0
|
||
|
||
# 8. 制作信息
|
||
scene black with dissolve
|
||
show text "游戏灵感来自真实事件" at truecenter with dissolve
|
||
pause 1.5
|
||
hide text
|
||
|
||
show text "任懿涛画廊真实存在:\nhttps://gallery.lizexuan.com" at truecenter with dissolve
|
||
pause 2.0
|
||
hide text
|
||
|
||
show text "按下任意键开始" at truecenter with dissolve
|
||
pause 1.0
|
||
|
||
return |