-
Expression driven word-by-word animation
Can I link somehow the data below to replicate a word-by-word animation programmatically without the need of creating keyframes?
I assume I need to link the data to the range selector…
to set the animator to animate word by word.
I could take this data from a JSON file.
{"time":0,"type":"sentence","start":0,"end":23,"value":"Mary had a little lamb."}
{"time":6,"type":"word","start":0,"end":4,"value":"Mary"}
{"time":297,"type":"word","start":5,"end":8,"value":"had"}
{"time":461,"type":"word","start":9,"end":10,"value":"a"}
{"time":507,"type":"word","start":11,"end":17,"value":"little"}
{"time":734,"type":"word","start":18,"end":22,"value":"lamb"}