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