This is my SKAction:
naarRechts = SKAction.moveToX(positionX , duration: 0.22)
player.runAction(naarRechts)
In that duration of 0.22 sec I do NOT want this action to run:
if CGRectIntersectsRect(player.frame, car.frame){
player.position.x = car.position.x
}
What is the magic line of code where I can detect if my first SKAction is running, or to detect wether the player is in movement or not..
You can create a class variable
var playerIsInAction = false
then set it totrue
just after you run the action. Also change the method so that you can write a completion code (after the action ends) where you set the bool back tofalse
.It should be something like this :
And you check for the bool