Help! —BangTyping with jit.gl.text2d
I have been looking for solutions for long time now, but no luck. So…
I made this patch which can display a line of text (one or many words) at a time, I'm using jit.gl.text2d to each bang sends a message "text one" it all works fine.
But where I need help is: how to make that each bang would display a word from the prewritten text one by one?
Like this:
1. I have text:
"one two
three four
five"
2. Each bang sends message to jit.gl.text2d so that it displays like this:
Bang1:
"one"
Bang2:
"one two"
Bang3:
"one two
three"
Bang4
"one two
three four"
Bang5
"one two
three four
five"
_______________________________
Well, it doesnt need to be jit.gl.text2d, as long as it works. I was looking in to matrix, but have no idea how to plug it in..
Looking forward and thankful for any help!
—ik
This patch uses jit.lcd. Hope its helpful
Nate
Nate, this looks perfect!
Thank you!