You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
293 B

  1. local debug_version = "1"
  2. local release_version = "1"
  3. local isDev = isDevMode()
  4. local versionInfo =
  5. {
  6. --这里的注释不要打开
  7. --没有配置version.lua的项目因为在这里读不到版本号
  8. --就会去读version.json
  9. --ResourceVersion = isDev and debug_version or release_version
  10. }
  11. return versionInfo;