Compare commits
9 Commits
v0.0.6
...
230e5f8892
| Author | SHA1 | Date | |
|---|---|---|---|
| 230e5f8892 | |||
| 4a348e578b | |||
| 2e273a782c | |||
| b5452a0a8a | |||
| 890dea326d | |||
| ec39996d7c | |||
| d2da64618a | |||
| 7bf578b6b0 | |||
| 13ecbdb246 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,6 +3,7 @@
|
|||||||
# =============================================
|
# =============================================
|
||||||
*.rpyc
|
*.rpyc
|
||||||
*.rpyb
|
*.rpyb
|
||||||
|
*.rpymc
|
||||||
game/cache/
|
game/cache/
|
||||||
game/saves/
|
game/saves/
|
||||||
game/temp/
|
game/temp/
|
||||||
|
|||||||
@@ -20,11 +20,6 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
|
|||||||
|
|
||||||
构建多平台发行版需通过 Ren'Py 启动器 GUI 操作,配置见 `project.json` 和 `android.json`。
|
构建多平台发行版需通过 Ren'Py 启动器 GUI 操作,配置见 `project.json` 和 `android.json`。
|
||||||
|
|
||||||
## 已知语法错误(需要修复)
|
|
||||||
|
|
||||||
- `game/Chapters/Chapter1.rpy:31` — 引用了未定义的变换 `move_to_bottomleft`
|
|
||||||
- `game/screens.rpy:318` — 按钮定义中存在非法中文标点符号(`。`)
|
|
||||||
|
|
||||||
## 项目架构
|
## 项目架构
|
||||||
|
|
||||||
### 核心文件
|
### 核心文件
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ label Chapter1_Scene1:
|
|||||||
show xingyu laughing big
|
show xingyu laughing big
|
||||||
xingyu "{cps=5}哈哈哈哈哈{cps=15}!\n真是一对苦命鸳鸯!"
|
xingyu "{cps=5}哈哈哈哈哈{cps=15}!\n真是一对苦命鸳鸯!"
|
||||||
|
|
||||||
play sound "audio/xiakering.mp3"
|
play sound "audio/AfterClassRing.ogg"
|
||||||
scene bg black with fade
|
scene bg black with fade
|
||||||
pause 1.0
|
pause 1.0
|
||||||
scene bg playground twilight
|
scene bg playground twilight
|
||||||
|
|||||||
BIN
game/audio/AfterClassRing.ogg
Normal file
BIN
game/audio/AfterClassRing.ogg
Normal file
Binary file not shown.
BIN
game/audio/MainMenu.ogg
Normal file
BIN
game/audio/MainMenu.ogg
Normal file
Binary file not shown.
Binary file not shown.
@@ -69,7 +69,7 @@ define config.has_voice = False
|
|||||||
## 将以下语句取消注释就可以设置标题界面播放的背景音乐文件。此文件将在整个游戏中
|
## 将以下语句取消注释就可以设置标题界面播放的背景音乐文件。此文件将在整个游戏中
|
||||||
## 持续播放,直至音乐停止或其他文件开始播放。
|
## 持续播放,直至音乐停止或其他文件开始播放。
|
||||||
|
|
||||||
# define config.main_menu_music = "main-menu-theme.ogg"
|
define config.main_menu_music = "audio/MainMenu.ogg"
|
||||||
|
|
||||||
|
|
||||||
## 转场 ##########################################################################
|
## 转场 ##########################################################################
|
||||||
|
|||||||
@@ -113,10 +113,14 @@ transform zoom_to_upper_right:
|
|||||||
# 快速放大并向左下偏移(画面看起来往右上移动)
|
# 快速放大并向左下偏移(画面看起来往右上移动)
|
||||||
ease 0.3 zoom 1.7 xalign 0.6 yalign 0.2
|
ease 0.3 zoom 1.7 xalign 0.6 yalign 0.2
|
||||||
|
|
||||||
|
#label before_main_menu:
|
||||||
|
# $ renpy.music.play("andio/MainMenu.ogg", loop=True, fadein=2.0)
|
||||||
|
|
||||||
|
|
||||||
# 游戏在此开始。
|
# 游戏在此开始。
|
||||||
|
|
||||||
label start:
|
label start:
|
||||||
|
stop music fadeout 1.0
|
||||||
jump Chapter1_Scene1
|
jump Chapter1_Scene1
|
||||||
# 此处为游戏结尾。
|
# 此处为游戏结尾。
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -1,7 +1,9 @@
|
|||||||
{
|
{
|
||||||
"build_update": false,
|
"build_update": false,
|
||||||
"packages": [
|
"packages": [
|
||||||
"mac"
|
"mac",
|
||||||
|
"linux",
|
||||||
|
"win"
|
||||||
],
|
],
|
||||||
"add_from": true,
|
"add_from": true,
|
||||||
"force_recompile": true,
|
"force_recompile": true,
|
||||||
|
|||||||
BIN
web-presplash.png
Normal file
BIN
web-presplash.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 261 KiB |
Reference in New Issue
Block a user