Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

This is neat and straight-forward! Thanks for making it and making games more accessible :)

I just have a question... Is it possible to add this to button sounds somehow?

imagebutton idle "images/mag.png" action [Show("map_mag"), SetVariable("chaptermap", "mag")] focus_mask True activate_sound "sounds/magazine.ogg"

To confirm, you mean adding sound captions and not an image caption, correct? While it's not built in to Caption Tool, you can use sound captions in a button action with regular Ren'Py by using the function as an action in your button instead of using activate_sound.

Example:

imagebutton idle "images/mag.png" action [Show("map_mag"), SetVariable("chaptermap", "mag"), Function(play_sound, magazine)] focus_mask True

For this to work, you need to also have your magazine sound registered in your list of sounds.

Ah yes, this is what I meant! I just tested it and it works fine :) Thank you.