Last active
April 2, 2020 01:32
-
-
Save mmloveaa/c83df0e7557782b45b87dfef1820ffbe to your computer and use it in GitHub Desktop.
<AoGProTips> Synchronize animations with the Text-To-Speech
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const callbacks = { | |
onTtsMark(markName) { | |
if (markName === ’START_ROAR’) { | |
beginRoaring(); | |
} else if (markName === ’STOP_ROAR’) { | |
stopRoaring(); | |
} else { | |
... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment