新增无摩擦模式(隐藏,入口位于设置语音处立绘)

This commit is contained in:
MrZ626
2021-06-01 14:34:04 +08:00
parent cd00b2f1cd
commit 762a2a907e
10 changed files with 51 additions and 4 deletions

View File

@@ -23,8 +23,16 @@ function scene.mouseDown(x,y)
jump=10
local t=TIME()-last
if t>1 then
VOC.play((t<1.5 or t>15)and"doubt"or rnd()<.8 and"happy"or"egg")
last=TIME()
if t>2.6 and t<3 then
loadGame('sprintSmooth',true)
else
VOC.play(
(t<1.5 or t>15)and"doubt"or
rnd()<.8 and"happy"or
"egg"
)
last=TIME()
end
end
end
end