Create Kinetic Typography in Touchdesigner | Tutorial
Tutorial of a simplified version of my Kinetipo Tool made in touchdesigner.
You can find the complete version of this tool on my Gumroad: https://diogodiogodiogo.gumroad.com/l/kinetipo
# text1 script:
op(‘table2’).clear()
myText = str(op(‘null1’)[0,0])
for i in myText:
op(‘table2’).appendRow(i)
op(‘table2’).appendRow([“”])
# text2 script:
op(‘table3’).clear()
all_rows = op(‘table2’).rows()
for _ in range(int(2)):
for row in all_rows:
op(‘table3’).appendRow(row)