API/Autodoc/Files/RuStoreInstallState.gd.en.md
Source code
# @brief Описывает текущее состояние установки обновления.
class_name RuStoreInstallState extends RefCounted
# @brief Количество загруженных байт.
var bytesDownloaded: int = 0
# @brief Общее количество байт, которое необходимо скачать.
var totalBytesToDownload: int = 0
# @brief Процент загрузки.
var percentDownloaded: float = 0
# @brief Статус установки обновления, если пользователь уже устанавливает обновление в текущий момент времени.
var installStatus: ERuStoreInstallStatus.Item = ERuStoreInstallStatus.Item.UNKNOWN
# @brief Код ошибки во время скачивания обновления.
var installErrorCode: ERuStoreInstallErrorCode.Item = ERuStoreInstallErrorCode.Item.ERROR_UNKNOWN
func _init(json: String = ""):
if json != "":
var obj = JSON.parse_string(json)
bytesDownloaded = int(obj["bytesDownloaded"])
totalBytesToDownload = int(obj["totalBytesToDownload"])
installStatus = int(obj["installStatus"])
installErrorCode = int(obj["installErrorCode"])
if totalBytesToDownload > 0:
percentDownloaded = float(bytesDownloaded) / totalBytesToDownload * 100
else:
percentDownloaded = 0
if installStatus == ERuStoreInstallStatus.Item.DOWNLOADED:
percentDownloaded = 100
- Страницы
- ERuStoreAppUpdateType.gd.en
- ERuStoreAppUpdateType.gd
- ERuStoreInstallErrorCode.gd.en
- ERuStoreInstallErrorCode.gd
- ERuStoreInstallStatus.gd.en
- ERuStoreInstallStatus.gd
- ERuStoreUpdateAvailability.gd.en
- ERuStoreUpdateAvailability.gd
- ERuStoreUpdateFlowResult.gd.en
- ERuStoreUpdateFlowResult.gd
- RuStoreAppUpdateInfo.gd.en
- RuStoreAppUpdateInfo.gd
- RuStoreError.gd.en
- RuStoreError.gd
- RuStoreFeatureAvailabilityResult.gd.en
- RuStoreFeatureAvailabilityResult.gd
- RuStoreGodotAppUpdate.en
- RuStoreGodotAppUpdate.gd.en
- RuStoreGodotAppUpdate.gd
- RuStoreGodotAppUpdate
- RuStoreGodotCore.en
- RuStoreGodotCore
- RuStoreInstallState.gd.en
- RuStoreInstallState.gd
- addons.en
- addons
- docs.en
- docs
- godot_example.en
- godot_example
- ERuStoreAppUpdateType.gd.en
- ERuStoreAppUpdateType.gd
- ERuStoreInstallErrorCode.gd.en
- ERuStoreInstallErrorCode.gd
- ERuStoreInstallStatus.gd.en
- ERuStoreInstallStatus.gd
- ERuStoreUpdateAvailability.gd.en
- ERuStoreUpdateAvailability.gd
- ERuStoreUpdateFlowResult.gd.en
- ERuStoreUpdateFlowResult.gd
- RuStoreAppUpdateInfo.gd.en
- RuStoreAppUpdateInfo.gd
- RuStoreError.gd.en
- RuStoreError.gd
- RuStoreFeatureAvailabilityResult.gd.en
- RuStoreFeatureAvailabilityResult.gd
- RuStoreGodotAppUpdate.en
- RuStoreGodotAppUpdate.gd.en
- RuStoreGodotAppUpdate.gd
- RuStoreGodotAppUpdate
- RuStoreGodotCore.en
- RuStoreGodotCore
- RuStoreInstallState.gd.en
- RuStoreInstallState.gd
- addons.en
- addons
- docs.en
- docs
- godot_example.en
- godot_example