为我的精灵在GameScene中的位置写了一些代码并且构建成功但我得到了EXC_BAD_INSTRUCTION错误,绿线贯穿其中。我真的不明白我做错了什么。我该如何解决? 这是我的代码:
override func didMoveToView(view: SKView) {
player = MCTPlayer()
player.position = CGPointMake(70, movingGround.position.y + movingGround.frame.size.height/2 + player.frame.size.height/2) //line with the error
addChild(player)
}