Skip to content

Instantly share code, notes, and snippets.

@sartak
Created December 31, 2013 22:12
Show Gist options
  • Save sartak/8202746 to your computer and use it in GitHub Desktop.
Save sartak/8202746 to your computer and use it in GitHub Desktop.
if (direction == self.hero.direction) {
self.isAnimating = YES;
[self.hero runAction:[SKAction moveByX:moveByX y:moveByY duration:[self.hero stepAnimationDuration]]];
[self.hero runStepAnimation:^{
self.isAnimating = NO;
}];
}
else {
[self.hero changeDirection:direction];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment