是指打开游戏(未出现游戏菜单前)出现厂商logo、品牌标识?在renpy里,是使用特殊脚本标签:splashscreen
中文文档链接:https://doc.renpy.cn/zh-CN/label ... reen#special-labels
还有用到,
转场(transition)的中文文档 链接:https://doc.renpy.cn/zh-CN/transitions.html
[RenPy] 纯文本查看 复制代码 ## 两张图片位置:工程文件名\game\gui
## 背景
image logo1 = "gui/logo_BG.jpeg"
## 文字LOGO
image logo2 = "gui/logo_text.png"
## 特殊脚本标签【splashscreen】,这种标签(label)是唯一的。
label splashscreen:
## 十六进制颜色代码#111111/#111是极暗度的灰色。
scene expression "#111"
## 转场【Dissolve】:[url]https://doc.renpy.cn/zh-CN/transitions.html?highlight=dissolve#var-dissolve[/url]
with Dissolve(0.9)
### show语句:[url]https://doc.renpy.cn/zh-CN/displaying_images.html?highlight=show#show[/url]
show logo1 with dissolve
## 转场【Pause】:[url]https://doc.renpy.cn/zh-CN/transitions.html?highlight=pause#Pause[/url]
with Pause(1)
show logo2 with dissolve
with Pause(2)
scene expression "#111"
with Dissolve(0.7)
|