You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AwaitableHTTPRequest.gd
+5-7Lines changed: 5 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
class_nameAwaitableHTTPRequest
2
2
extendsHTTPRequest
3
-
## Awaitable HTTP Request Node v1.5.2 by swark1n
3
+
## Awaitable HTTP Request Node v1.6.0 by swark1n & [url=https://github.com/Swarkin/Godot-AwaitableHTTPRequest/graphs/contributors]contributors[/url].
4
4
5
5
signalrequest_finished## Emits once the current request finishes, right after [member is_requesting] is set to false.
6
6
varis_requesting:=false## Whether the node is busy performing a request.
@@ -10,15 +10,14 @@ class HTTPResult extends RefCounted:
10
10
var_error: Error## Returns the [method HTTPRequest.request] error, [constant Error.OK] otherwise.
11
11
var_result: HTTPRequest.Result## Returns the [annotation HTTPRequest] error, [constant HTTPRequest.RESULT_SUCCESS] otherwise.
12
12
varsuccess: bool: ## Checks whether [member _error] and [member _result] aren't in an error state.[br][b]Note:[/b] This does not return false if [member status_code] is >= 400, see [code]https://developer.mozilla.org/en-US/docs/Web/HTTP/Status[/code].
0 commit comments