直接看脚本,看符合不符合你的要求:
[RenPy] 纯文本查看 复制代码 ## 改为使用NVL模式,定义方法变成:
## 注意"nestled"与"fixed"显示位置不同。
define ss = Character('希尔维亚', kind=nvl, ctc="ctc_animation",ctc_position= "nestled", ctc_pause="ctc_animation", ctc_timedpause="ctc_animation")
define mm = Character('我', kind=nvl , ctc="ctc_animation" ,ctc_position= "fixed", ctc_pause="ctc_animation", ctc_timedpause="ctc_animation")
# NVL模式的旁白可以使用如下定义:
define narrator = nvl_narrator
image ctc_animation: # CTC
xalign 0.95 yalign 0.97
"images/ctc_1.png" with Dissolve(1.0, alpha=True)
1.0
"images/ctc_2.png" with Dissolve(1.0, alpha=True)
1.0
repeat
# 游戏在此开始。
label start:
# 显示一个背景。此处默认显示占位图,但您也可以在图片目录添加一个文件
# (命名为“bg room.png”或“bg room.jpg”)来显示。
scene bg room
mm"进入NVL模式"
ss"文本 1{p}文本 2{p=3.0}文本 3" ## P段落暂停标签
mm"文本 1{w} 文本 2{w=3.0} 文本 3" ## W等待标签
nvl clear # 分页
"沉默。"
"她有些吃惊,然后……"
ss "当然,不过,什么是\"视觉小说\"?"
# 此处为游戏结尾。
return
|