12345678910111213141516171819202122 |
- """
- Copyright (c) Contributors to the Open 3D Engine Project.
- For complete copyright and license terms please see the LICENSE at the root of this distribution.
- SPDX-License-Identifier: Apache-2.0 OR MIT
- """
- """
- General Constants
- """
- TIMEOUT_5 = 5
- """
- Asset Cache Server Constants
- """
- ASSET_CACHE_INVALID_SERVER_ADDRESS = '--regset="/O3DE/AssetProcessor/Settings/Server/cacheServerAddress=InvalidAddress"'
- INVALID_SERVER_ADDRESS = "InvalidAddress"
- ASSET_CACHE_SERVER_MODE = '--regset="/O3DE/AssetProcessor/Settings/Server/assetCacheServerMode=Server"'
- ASSET_CACHE_CLIENT_MODE = '--regset="/O3DE/AssetProcessor/Settings/Server/assetCacheServerMode=Client"'
|