gpt4 book ai didi

ios - 如何计算弯曲的 SKSpriteNode 的 "center"点?

转载 作者:行者123 更新时间:2023-11-28 08:00:32 25 4
gpt4 key购买 nike

我正在通过 SKShapeNode 的纹理初始化和显示 SKSpriteNode,该纹理具有代表圆的一部分的特定路径。下面是我使用 playground 生成的形状示例:

import SpriteKit
import PlaygroundSupport

let view = SKView(frame: CGRect(x: 0, y: 0, width: 300, height: 300))
let scene = SKScene(size: view.frame.size)
view.presentScene(scene)

let radius: CGFloat = view.frame.width * 0.40

var length: CGFloat = (.pi * 2.0) / 8.0
var width: CGFloat = radius / 5.0

var path: CGPath {

let path = UIBezierPath(arcCenter: view.center, radius: radius, startAngle: 0.0, endAngle: length, clockwise: true)
path.addArc(withCenter: view.center, radius: radius - width, startAngle: length, endAngle: 0.0, clockwise: false)

path.close()

return path.cgPath
}

let shapeNode = SKShapeNode(path: path)
shapeNode.fillColor = .white
let texture = view.texture(from: shapeNode)!

let spriteNode = SKSpriteNode(texture: texture, color: .white, size: texture.size())
spriteNode.position = CGPoint(x: shapeNode.frame.midX, y: shapeNode.frame.midY)

scene.addChild(spriteNode)

PlaygroundPage.current.liveView = view

这会生成这个形状:

shape

我想添加一个小的子 SKSpriteNode,它以弯曲节点的宽度为中心,位于中间的圆弧点,如下所示:

proper shape

我最接近的是使用 spriteNode 的位置:

let childNode = SKSpriteNode(color: .red, size: CGSize(width: 5, height: 5))
childNode.position = spriteNode.position
scene.addChild(childNode)

这产生了一些接近的东西,但它使用了框架,这是完全错误的:

improper shape

我假设我需要对弧的路径做些什么,但我不确定如何做。有人能指出我正确的方向吗?

最佳答案

感谢评论,我避免使用路径并刷新一些基本的触发器来解决:

let x = (radius - width/2) * cos(length/2) + view.center.x
let y = (radius - width/2) * sin(length/2) + view.center.y
childNode.position = CGPoint(x: x, y: y)

关于ios - 如何计算弯曲的 SKSpriteNode 的 "center"点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46784342/

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