I am trying to set duration for individual SKTextures
in an animation. Below the armsAtlas
texture atlas. I would like to set the upTexture
to last between 1-4 seconds randomly followed by the downTexture
to last between 0.3 - 1 second. How can I set these duration ranges for the individual textures?
let armsAtlas = SKTextureAtlas(named: "arms")
let downTexture = armsAtlas.textureNamed("down")
let upTexture = armsAtlas.textureNamed("up")
You can use SKAction sequence and it's waitForDuration:withRange: method, like this:
What this code does, is that it creates a sprite, initialize it with downTexture by default and:
If you want to stop this action, you can access it like this: