Future<CubeTexture> fromFileList(List<File> file) async{ _init(); for ( int i = 0; i < file.length; ++ i ) { await fromFile(file[i]); } return texture; }