Spritekit Camera Node 缩放但固定场景底部

Spritekit Camera Node scale but pin the bottom of the scene

我有一个缩放为 1 的相机节点。当我 运行 游戏时,我希望它缩小(即缩小)但保持底部的 "floor"。我将如何将相机节点固定到场景底部并有效地缩放 "up"(很难解释)。所以场景的底部保持在底部,但其余部分缩小。

我试过 SKConstraints 但运气不好(我对 SpriteKit 还很陌生)

func setConstraints(with scene: SKScene, and frame: CGRect, to node: SKNode?) {
        let scaledSize = CGSize(width: scene.size.width * xScale, height: scene.size.height * yScale)
        let boardContentRect = frame

        let xInset = min((scaledSize.width / 2), boardContentRect.width / 2)
        let yInset = min((scaledSize.height / 2), boardContentRect.height / 2)
        let insetContentRect = boardContentRect.insetBy(dx: xInset, dy: yInset)

        let xRange = SKRange(lowerLimit: insetContentRect.minX, upperLimit: insetContentRect.maxX)
        let yRange = SKRange(lowerLimit: insetContentRect.minY, upperLimit: insetContentRect.maxY)

        let levelEdgeConstraint = SKConstraint.positionX(xRange, y: yRange)

        if let node = node {
            let zeroRange = SKRange(constantValue: 0.0)
            let positionConstraint = SKConstraint.distance(zeroRange, to: node)
            constraints = [positionConstraint, levelEdgeConstraint]
        } else {
            constraints = [levelEdgeConstraint]
        }


    }

然后调用函数:

gameCamera.setConstraints(with: self, and: scene!.frame, to: nil)

(这是我正在关注的教程中的代码)"setConstraints" 函数是 SKCameraNode

的扩展

我不确定这是否会给我正确的输出,但是当我 运行 缩放代码时,它只是从中间缩放并显示场景 .sks 文件的周围区域。

gameCamera.run(SKAction.scale(to: 0.2, duration: 100))

这是缩放 gameCamera 的代码

编辑:下面的答案几乎就是我要找的,这是我更新的答案:

let scaleTo = 0.2
let duration = 100
let scaleTop = SKAction.customAction(withDuration:duration){
                           (node, elapsedTime) in
            let newScale = 1 - ((elapsedTime/duration) * (1-scaleTo))
            let currentScaleY = node.yScale
            let currentHeight = node.scene!.size.height * currentScaleY
            let newHeight =  node.scene!.size.height * newScale
                           let heightDiff = newHeight - currentHeight
                           let yOffset = heightDiff / 2
                            node.setScale(newScale)
                           node.position.y += yOffset
                       }

您不能使用约束,因为您的缩放大小是动态的。

相反,您需要移动相机位置以产生它仅在 3 个方向缩放的错觉。

为此,我建议创建自定义操作。

let scaleTo = 2.0
let duration = 1.0
let currentNodeScale = 0.0
let scaleTop = SKCustomAction(withDuration:duration){
                   (node, elapsedTime) in
                   if elapsedTime == 0 {currentNodeScale = node.scale}
                   let newScale = currentNodeScale - ((elapsedTime/duration) * (currentNodeScale-scaleTo))
                   let currentYScale = node.yScale
                   let currentHeight = node.scene.size.height * currentYScale
                   let newHeight =  node.scene.size.height * newScale
                   let heightDiff = newHeight - currentHeight
                   let yOffset = heightDiff / 2
                   node.scale(to:newScale)
                   node.position.y += yOffset

               }

这是在将相机的新高度与旧高度进行比较,并将其移动距离的 1/2。

因此,如果您当前的身高是 1,这意味着您的相机在 y 轴上看到 [-1/2 到 1/2]。如果您的新比例高度为 2,那么您的相机会在 y 轴上看到 [-1 到 1]。我们需要将相机向上移动,以便相机看到 [-1/2 到 3/2],这意味着我们需要添加 1/2。所以我们做 2 - 1,也就是 1,然后走那个距离的 1/2。这使我们的 yOffset 变为 1/2,您可以将其添加到相机中。