This is really helpful, thanks! Would there be a way to make this script pause character callback sounds during these automatic pauses? I'm using this tutorial here and would love to make the speech sound more organic by mixing in with this plugin. Thanks either way, I really appreciate your work!
Viewing post in Speech Pauses for Ren'Py comments
This should be doable if you add
or renpy.get_statement_name() == "say-nvl"
to the bigger conditional inside the "add_speech_pauses" function. So it should look like:
def add_speech_pauses(text_input): if prev_filter: text_input = prev_filter(text_input) if persistent.speech_pauses is not True or preferences.text_cps == 0 or renpy.get_statement_name() == "say-nvl": return text_input return speech_pause_adder(text_input)