Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Nice work! Is there a way to highlight all of the characters in scene?

By default I haven't added something like that yet. But it can be easily patched in by modifying 

if isinstance(sprite_focus, list):
    is_talking = char_name in sprite_focus
else:
    is_talking = char_name == sprite_focus

then passing a list of names for the cb_name I believe.