模块文件名更清晰

This commit is contained in:
MrZ626
2020-11-16 11:38:49 +08:00
parent 025ef02e71
commit 890ef6c87b
4 changed files with 3 additions and 3 deletions

8
Zframework/vibrate.lua Normal file
View File

@@ -0,0 +1,8 @@
local level={0,0,.015,.02,.03,.04,.05,.06,.07,.08}
local VIB=love.system.vibrate
return function(t)
local L=SETTING.vib
if L>0 then
VIB(level[L+t])
end
end