I\'m trying to add a swipe gesture to a node so that when a user swipes it, it goes off screen but I keep getting a SIGABRT error:
SIGABRT
`Terminating a
Had the same problem, just so we have an accepted answer on this I would like to point out that the comment left by 0x141E is the correct solution to this:
0x141E
Replace Selector("swipedRight:") with #selector(PlankScene.swipedRight)
Selector("swipedRight:")
#selector(PlankScene.swipedRight)