SKAction
このシーケンスを使用して、画面の左側から右側に繰り返し前後に移動するノードがある SpriteKit でゲームを作成しています。
func move(){
let recursive = SKAction.sequence([
SKAction.moveByX(frame.size.width/2.8, y: 0, duration: NSTimeInterval(4),
SKAction.moveByX(-frame.size.width/2.8, y: 0, duration: NSTimeInterval(4),
SKAction.runBlock({self.move()})])
doc.runAction(recursive, withKey: "move")
}
ノードは でSKTexture
、WalkRight というアトラスを使用しています。私がやろうとしているのSKAction.moveByX(-frame.size.width/2.8, y: 0, duration: NSTimeInterval(4)
は、実行時にノードのテクスチャを、私が WalkLeft と呼んだ別のアトラスに変更したいということです。ノードのテクスチャを変更できるアクションをシーケンスで実行する方法がわかりません。
テクスチャを追加するためのコード:
//In class
var docWalkingFrames: [SKTexture]!
// general runAction method to make doc walk.
func walkingDoc() {
doc.runAction(SKAction.repeatActionForever(SKAction.animateWithTextures(docWalkingFrames,timePerFrame: 0.3,resize: false,restore: true)),withKey:"walkingInPlaceDoc")
}
//In didMoveToView
//doc animation walk right
let docAnimatedAtlas = SKTextureAtlas(named: "WalkRight")
var walkFrames = [SKTexture]()
let numImages = docAnimatedAtlas.textureNames.count
for var i=1; i<=numImages; i++ {
let docTextureName = "docRight\(i)"
walkFrames.append(docAnimatedAtlas.textureNamed(docTextureName))
}
docWalkingFrames = walkFrames
let firstFrame = docWalkingFrames[0]
doc = SKSpriteNode(texture: firstFrame)
doc.position = CGPoint(x:self.frame.size.width/3.1, y:self.frame.size.height/2)
doc.size = CGSize(width: 220, height: 470)
doc.zPosition = 2
addChild(doc)
walkingDoc()