Not the creator, but the comics are simply displayed underneath each other. I’m making a plugin that uses flickity to make Instagram-style sliding webcomics.
Solved it myself. Not sure if the most efficient way, but it works.
$comics = get_webcomics();
foreach ( $comics as $comic ) {
$args = [
'type' => 'storyline',
'object_ids' => $comic->ID
];
$storylines = get_webcomic_terms($args);
}