gpt4 book ai didi

swift - Spritekit 围绕中心旋转多个节点

转载 作者:行者123 更新时间:2023-11-28 06:55:09 25 4
gpt4 key购买 nike

我想使用 UIRotationGesture 基于所有这些节点的中心点将旋转应用于多个节点(我的游戏中的选定节点)。我已经可以旋转单个节点,只需更改它的 zRotation。

多节点的问题是它会根据中心节点更改位置和 zRotation,我似乎无法理解如何管理它。

我想要这样的东西: enter image description here enter image description here

我必须旋转单个节点的是:旋转手势期间

theRotation = CGFloat(sender.rotation) + self.offset
theRotation = theRotation * -1
node.rotation = theRotation

旋转手势后

self.offset = theRotation * -1

您是否知道如何在旋转期间为我的节点设置正确的位置和角度?


我尝试过的:

  1. 我尝试在中心添加一个节点(我的图片中的白点,代表中心)并将我的节点的父节点更改为这个节点,然后在这个节点上应用 zRotation,然后替换正确的 parent 。这没有用,因为我似乎无法更改父节点(我的节点消失了),这是我的另一个堆栈问题。
  2. 我尝试更改节点的 anchor 以适合中心点,然后使用 theRotation 旋转它们。它没有用,因为我似乎无法将 anchor 设置在中心位置(我有)。我尝试更改中心位置的坐标系以适合节点的坐标系,但这仍然无效。 node.convertPoint(center, fromNode: Self) 当它大约是 -1;-.5(或类似的东西)时,它给我类似 -58;-74 的协调。我不明白这一点。

所以现在我想自己计算位置和旋转,因为这些都不起作用,但我需要一个关于如何计算这些的想法,因为我不太擅长三角函数/线性代数,很遗憾。

谢谢你的帮助!


我如何计算我的中心:

var maxX = nodesSelected[0].position.x
var minX = nodesSelected[0].position.x
var maxY = nodesSelected[0].position.y
var minY = nodesSelected[0].position.y

for node in nodesSelected{
if node.position.x > maxX{
maxX = node.position.x
}
if node.position.x < minX{
minX = node.position.x
}
if node.position.y > maxY{
maxY = node.position.y
}
if node.position.y > maxY{
minY = node.position.y
}
}
return CGPoint(x: (maxX-minX)/2+minX, y: (maxY-minY)+minY/2)

我如何计算旋转半径(节点与中心之间的距离):

extension CGPoint {
func distance(point: CGPoint) -> CGFloat {
return abs(CGFloat(hypotf(Float(point.x - x), Float(point.y - y))))
}

我如何获得轮换:

sender.rotation

最佳答案

给定一个rotationAngle,您可以使用下面的代码计算每个节点的新位置,您需要了解一点三角函数才能理解代码。

这里我有一个 SKShapeNode 数组,我称之为 dots(它相当于图像中的绿色节点)。 centralDot 将是您的中央 SKSpriteNode

    for dot in dots {
let dx = dot.position.x - centralDot!.position.x // Get distance X from center
let dy = dot.position.y - centralDot!.position.y // Get distance Y from center

let current_angle = atan(dy / dx) // Current angle is the arctan of dy / dx

let next_angle = current_angle - rotationAngle // Sum how much you want to rotate in radians

// the new x is: center + radius*cos(x)
// the new y is: center + radius*sin(y)
// if dx < 0 you need to get the oposite value of the position
let new_x = dx >= 0 ? centralDot!.position.x + rotationRadius * cos(next_angle) : centralDot!.position.x - rotationRadius * cos(next_angle)
let new_y = dx >= 0 ? centralDot!.position.y + rotationRadius * sin(next_angle) : centralDot!.position.y - rotationRadius * sin(next_angle)

let new_point = CGPoint(x: new_x, y: new_y)

let action = SKAction.moveTo(new_point, duration: 0.2)

dot.runAction(action)
}

希望对你有帮助

更新:

第一个代码没有帮助,所以我尝试了另一个。这个在我的测试中效果更好。

for i in 0..<dots.count {
let dot = dots[i]

let angle = rotationAngle + CGFloat(M_PI_2 * Double(i))

let new_x = rotationRadius * cos(angle) + centralDot!.position.x
let new_y = rotationRadius * sin(angle) + centralDot!.position.y

let new_point = CGPoint(x: new_x, y: new_y)

let action = SKAction.moveTo(new_point, duration: 1/60)

dot.runAction(action)
}
  • rotationRadius 是一个常量,你想要的中心和绿色节点之间的距离。

关于swift - Spritekit 围绕中心旋转多个节点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33847994/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com