We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8446e62 commit 3cf97ddCopy full SHA for 3cf97dd
mirror-godot-app/player/equipable/equipable_controller.gd
@@ -154,6 +154,9 @@ func _load_equipable_by_asset_id(asset_id: String) -> void:
154
if asset_id != _current_asset_id:
155
# It is possible that another call to this method changed the current equipable.
156
return
157
+ if file_promise.is_error():
158
+ push_error("Failed to download asset: ", file_promise.get_error_message())
159
+ equipable_changed.emit(null)
160
var file_result = file_promise.get_result()
161
if file_result is Node3D and file_result.has_meta(&"MIRROR_equipable"):
162
_setup_equipped_item(file_result)
0 commit comments