FileSystemParametersDefine.cs 1.2 KB

123456789101112131415161718192021
  1. 
  2. namespace YooAsset
  3. {
  4. public class FileSystemParametersDefine
  5. {
  6. public const string FILE_VERIFY_LEVEL = "FILE_VERIFY_LEVEL";
  7. public const string REMOTE_SERVICES = "REMOTE_SERVICES";
  8. public const string DECRYPTION_SERVICES = "DECRYPTION_SERVICES";
  9. public const string APPEND_FILE_EXTENSION = "APPEND_FILE_EXTENSION";
  10. public const string DISABLE_CATALOG_FILE = "DISABLE_CATALOG_FILE";
  11. public const string DISABLE_UNITY_WEB_CACHE = "DISABLE_UNITY_WEB_CACHE";
  12. public const string DOWNLOAD_MAX_CONCURRENCY = "DOWNLOAD_MAX_CONCURRENCY";
  13. public const string DOWNLOAD_MAX_REQUEST_PER_FRAME = "DOWNLOAD_MAX_REQUEST_PER_FRAME";
  14. public const string RESUME_DOWNLOAD_MINMUM_SIZE = "RESUME_DOWNLOAD_MINMUM_SIZE";
  15. public const string RESUME_DOWNLOAD_RESPONSE_CODES = "RESUME_DOWNLOAD_RESPONSE_CODES";
  16. public const string ASYNC_SIMULATE_MIN_FRAME = "ASYNC_SIMULATE_MIN_FRAME";
  17. public const string ASYNC_SIMULATE_MAX_FRAME = "ASYNC_SIMULATE_MAX_FRAME";
  18. public const string COPY_BUILDIN_PACKAGE_MANIFEST = "COPY_BUILDIN_PACKAGE_MANIFEST";
  19. public const string COPY_BUILDIN_PACKAGE_MANIFEST_DEST_ROOT = "COPY_BUILDIN_PACKAGE_MANIFEST_DEST_ROOT";
  20. }
  21. }