fromNetwork method
uri
- a uri containing the location of the file to be loaded
Implementation
@override
Future<CompressedTexture?> fromNetwork(Uri uri) async{
_init();
ThreeFile? tf = await _loader.fromNetwork(uri);
return _parse(tf?.data);
}