DOM manipulation (insertBefore, insertAfter, replace, clone) (parent, nextSibling, previousSibling, firstChild, lastChild)

This commit is contained in:
Face
2025-08-06 16:03:09 +03:00
parent 05a959647d
commit 94f6914539
5 changed files with 607 additions and 7 deletions

View File

@@ -4,6 +4,9 @@ func fetch_image(url: String) -> ImageTexture:
var http_request = HTTPRequest.new()
add_child(http_request)
if url.is_empty():
return null
var error = http_request.request(url)
if error != OK:
print("Error making HTTP request: ", error)