Jimmy781
Hey guys ,
I am downloading an image from the web :
using (HttpClient x = new HttpClient())
{
var y = await x.GetStreamAsync(url);
}
plane.SetMaterial(Material.FromImage(y));
I can get y as a byte array or a stream . However i have no idea how to set the plane texture based on them .
Any ideas ?