fromPath method
filePath
- path of the file to be loaded
Implementation
@override
Future<CompressedTexture?> fromPath(String filePath) async{
_init();
ThreeFile? tf = await _loader.fromPath(filePath);
return _parse(tf?.data);
}
filePath
- path of the file to be loaded
@override
Future<CompressedTexture?> fromPath(String filePath) async{
_init();
ThreeFile? tf = await _loader.fromPath(filePath);
return _parse(tf?.data);
}