本帖最后由 怀念丶落樱 于 2022-1-31 11:51 编辑
1.两个办法吧,menu时视频停止。(就是不要让视频一直循环。)
2.不要使用menu,做俩按钮出来。(你可以试试我下面的代码。)
[RenPy] 纯文本查看 复制代码
define diyici = 0
#这样子即使连续点击 出击 也不会卡顿。后面的image我就不复制上来了!太多了!
label start:
$a=renpy.random.randint(1,6)
$name=renpy.random.randint(1,1)
if diyici == 0:
"请您做好准备!比赛马上开始!"
$diyici=1
pause 3
jump d3
else:
pause 3
jump d3
label d3:
scene 敌情场景
with dissolve
call screen d3
screen d3:
fixed:
textbutton "出击":
xpos 100 ypos 450
text_size 25 text_outlines [(absolute(2),"#000",absolute(0),absolute(0))]
text_color "BBBABB"
text_hover_color "99F9FF"
action Jump("start")
textbutton "逃跑":
xpos 100 ypos 500
text_size 25 text_outlines [(absolute(2),"#000",absolute(0),absolute(0))]
text_color "BBBABB"
text_hover_color "99F9FF"
action Jump("start")
|