源战役客户端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
346 B

  1. Status = Status or {}
  2. local Status = Status
  3. local Time = Time
  4. setmetatable(Status,{__index = function (t,k)
  5. if k == "NowTime" then
  6. return Time.time
  7. elseif k == "NowUnscaledTime" then
  8. return Time.unscaledTime
  9. elseif k == "ElapseTime" then
  10. return Time.deltaTime
  11. end
  12. end
  13. })