瀏覽代碼

SS

tags/chalkboard
madiwka3 3 年之前
父節點
當前提交
460c229266
共有 1 個檔案被更改,包括 12 行新增5 行删除
  1. +12
    -5
      main.lua

+ 12
- 5
main.lua 查看文件

@@ -24,7 +24,7 @@ wall1width = 30
nuclearanimation = 3
easternum = 0
ball_DIR = 0
updaterate = 0.1
updaterate = 0.03
RED = 255
hitNum = {}
hitNum[1] = 0
@@ -710,20 +710,27 @@ function love.update(dt)
if globalState == "menu" then
debugCheck(dt)
end
if ts > updaterate then
if globalState == "nettest" then
basegame(dt)
nettest(dt)
if ts > updaterate then
nettest(dt)
ts = ts - updaterate
end
end
if globalState == "clienttest" then
if confirmation ~= "disconnected" then
lastSentKeyP1 = lastSentKeyClient
clientsBaseGame(dt)
end
if ts > updaterate then
clienttest(dt)
ts = ts - updaterate
end
end
ts = ts - updaterate
end
end
serverinit = false
clientinit = false


Loading…
取消
儲存