fromAssetList method

Future<CubeTexture?> fromAssetList(
  1. List<String> asset, {
  2. String? package,
})

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;
}