comment télécharger quelque chose à partir d'un seul unité

//You can use System.Net to download file asynchronously.

//something like
System.Net.WebClient client = new WebClient();
client.DownloadFile("Download Url", @"Save Path")
//I found a good example ,that can use with unity3d here: https://bit.ly/3fmJiaD.
Mnr. Stupid