fromAssetList method
Implementation
Future<CubeTexture?> fromAssetList(List<String> asset, {String? package}) async{
_init();
for ( int i = 0; i < asset.length; ++ i ) {
await fromAsset(asset[i],package:package);
}
return texture;
}
Future<CubeTexture?> fromAssetList(List<String> asset, {String? package}) async{
_init();
for ( int i = 0; i < asset.length; ++ i ) {
await fromAsset(asset[i],package:package);
}
return texture;
}