Play one sound when actor pressed once and another sound when pressed again
Champachan
Member Posts: 21
Hello ppl,
How can I get actor to play one sound when pressed once and another when pressed again.
I then need these sounds to keep playing like this consecutively as the actor is touched.
Thanks for any help
Comments
Make an integer attribute - let's call it 'X'
When touch is pressed, change X to 1-X
Rule: When X=0 play A
Rule: When X=1 play B
What a nice alternative to mod!
Send and Receive Data using your own Server Tutorial! | Vote for A Long Way Home on Steam Greenlight! | Ten Years Left
Thanks Socks, works a treat.
shouldnt play b = -1
nevermind