2024-08-03 18:43:12 +08:00
|
|
|
|
|
|
|
|
|
|
namespace YooAsset
|
|
|
|
|
|
{
|
2024-12-11 10:43:13 +08:00
|
|
|
|
public class FileSystemParametersDefine
|
2024-08-03 18:43:12 +08:00
|
|
|
|
{
|
|
|
|
|
|
public const string FILE_VERIFY_LEVEL = "FILE_VERIFY_LEVEL";
|
2025-03-31 17:26:46 +08:00
|
|
|
|
public const string INSTALL_CLEAR_MODE = "INSTALL_CLEAR_MODE";
|
2024-08-03 18:43:12 +08:00
|
|
|
|
public const string REMOTE_SERVICES = "REMOTE_SERVICES";
|
|
|
|
|
|
public const string DECRYPTION_SERVICES = "DECRYPTION_SERVICES";
|
|
|
|
|
|
public const string APPEND_FILE_EXTENSION = "APPEND_FILE_EXTENSION";
|
2024-12-26 14:57:37 +08:00
|
|
|
|
public const string DISABLE_CATALOG_FILE = "DISABLE_CATALOG_FILE";
|
2024-08-03 18:43:12 +08:00
|
|
|
|
public const string DISABLE_UNITY_WEB_CACHE = "DISABLE_UNITY_WEB_CACHE";
|
2024-12-17 17:14:59 +08:00
|
|
|
|
public const string DOWNLOAD_MAX_CONCURRENCY = "DOWNLOAD_MAX_CONCURRENCY";
|
|
|
|
|
|
public const string DOWNLOAD_MAX_REQUEST_PER_FRAME = "DOWNLOAD_MAX_REQUEST_PER_FRAME";
|
2024-08-03 18:43:12 +08:00
|
|
|
|
public const string RESUME_DOWNLOAD_MINMUM_SIZE = "RESUME_DOWNLOAD_MINMUM_SIZE";
|
|
|
|
|
|
public const string RESUME_DOWNLOAD_RESPONSE_CODES = "RESUME_DOWNLOAD_RESPONSE_CODES";
|
2024-12-11 10:43:13 +08:00
|
|
|
|
public const string ASYNC_SIMULATE_MIN_FRAME = "ASYNC_SIMULATE_MIN_FRAME";
|
|
|
|
|
|
public const string ASYNC_SIMULATE_MAX_FRAME = "ASYNC_SIMULATE_MAX_FRAME";
|
2025-02-06 16:43:55 +08:00
|
|
|
|
public const string COPY_BUILDIN_PACKAGE_MANIFEST = "COPY_BUILDIN_PACKAGE_MANIFEST";
|
2025-02-06 17:35:10 +08:00
|
|
|
|
public const string COPY_BUILDIN_PACKAGE_MANIFEST_DEST_ROOT = "COPY_BUILDIN_PACKAGE_MANIFEST_DEST_ROOT";
|
2024-08-03 18:43:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|