This commit is contained in:
MrZ_26
2020-02-22 00:47:35 +08:00
parent 527352ce15
commit 57857ceb67
49 changed files with 909 additions and 856 deletions

8
parts/vib.lua Normal file
View File

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