API/Autodoc/Files/RuStoreFeatureAvailabilityResult.gd.en.md
Source code
# @brief Проверка доступности функционала.
class_name RuStoreFeatureAvailabilityResult extends RefCounted
# В противном случае возвращается isAvailable == false.
var isAvailable: bool = false
# @brief Информация об ошибке.
var cause: RuStoreError = null
func _init(json: String = ""):
if json != "":
var obj = JSON.parse_string(json)
isAvailable = obj["isAvailable"]
if obj.has("cause"):
var jcause = JSON.stringify(obj["cause"])
cause = RuStoreError.new(jcause)
- Страницы
- RuStoreError.gd.en
- RuStoreError.gd
- RuStoreFeatureAvailabilityResult.gd.en
- RuStoreFeatureAvailabilityResult.gd
- RuStoreGodotCore.en
- RuStoreGodotCore
- RuStoreGodotRemoteConfig.en
- RuStoreGodotRemoteConfig.gd.en
- RuStoreGodotRemoteConfig.gd
- RuStoreGodotRemoteConfig
- addons.en
- addons
- docs.en
- docs
- godot_example.en
- godot_example
- RuStoreError.gd.en
- RuStoreError.gd
- RuStoreFeatureAvailabilityResult.gd.en
- RuStoreFeatureAvailabilityResult.gd
- RuStoreGodotCore.en
- RuStoreGodotCore
- RuStoreGodotRemoteConfig.en
- RuStoreGodotRemoteConfig.gd.en
- RuStoreGodotRemoteConfig.gd
- RuStoreGodotRemoteConfig
- addons.en
- addons
- docs.en
- docs
- godot_example.en
- godot_example