I'm trying to trigger the stutter on button release, how can I do that?
The idea is as simple as this:
while_pressed ? pause : play_stutter
...but that doesn't seem to work.
The idea is as simple as this:
while_pressed ? pause : play_stutter
...but that doesn't seem to work.
Posté Tue 05 Feb 13 @ 9:54 pm
down ? pause : play_stutter
Also you might wanna test this too:
down ? nothing : play_stutter
Also you might wanna test this too:
down ? nothing : play_stutter
Posté Wed 06 Feb 13 @ 12:19 am
Awesome!!!
down ? nothing : play_stutter
is exactly what I was looking for!!
Thanks a bunch mate!
down ? nothing : play_stutter
is exactly what I was looking for!!
Thanks a bunch mate!
Posté Wed 06 Feb 13 @ 6:17 pm