I am using http request to downlaod a file.
It works, but I don not konw when the file dowload is done.
So how do I change this code so I get a signal that the download is complete.
And then I can go on loading the file.
@onready var req = $HTTPRequest
req.download_file = "download.gltf"
req.request("http://192.168.2.147:11613/TestCube2.gltf")
I am using Godot 4.1 and GDScript