Как не вращать обернутый текст в SCNSphere при повороте сцены / камеры пользователем - PullRequest
0 голосов
/ 19 октября 2018
let dotGeometry = SCNSphere(radius: 0.0005)
let dotNode = SCNNode(geometry: dotGeometry)
dotNode.position = dotPosition
if let image = imageWithText(text: "\(index)", fontSize:20, imageSize: CGSize(width:100,height:100), backgroundColor: .cyan) {
    dotGeometry.firstMaterial?.diffuse.contents = image
}
self.rootNode.addChildNode(dotNode)

Я использую приведенный выше код, чтобы создать SCNNode с SCNSphere геометрией, а затем обернуть его изображением текста, созданного с помощью кода ниже:

Все это работает, кроме случаев, когда пользователь запускаетвращая сцену, сфера вращается вместе со сценой, и текст перемещается к задней части сферы вне поля зрения пользователя.

func imageWithText(text:String, fontSize:CGFloat, fontColor:UIColor = .black, imageSize:CGSize, backgroundColor:UIColor) -> UIImage? {

    let imageRect = CGRect(origin: CGPoint.zero, size: imageSize)
    UIGraphicsBeginImageContext(imageSize)

    defer {
        UIGraphicsEndImageContext()
    }

    guard let context = UIGraphicsGetCurrentContext() else {
        return nil
    }

// Fill the background with a color
    context.setFillColor(backgroundColor.cgColor)
    context.fill(imageRect)

    let paragraphStyle = NSMutableParagraphStyle()
    paragraphStyle.alignment = .center

// Define the attributes of the text
    let attributes = [
        NSAttributedString.Key.font: UIFont(name: "Arial-BoldMT", size:fontSize),
        NSAttributedString.Key.paragraphStyle: paragraphStyle,
        NSAttributedString.Key.foregroundColor: fontColor
    ]

    // Determine the width/height of the text for the attributes
    let textSize = text.size(withAttributes: attributes as [NSAttributedString.Key : Any])

// Draw text in the current context
    text.draw(at: CGPoint(x: imageSize.width/2 - textSize.width/2, y: imageSize.height/2 - textSize.height/2), withAttributes: attributes as [NSAttributedString.Key : Any])

    if let image = UIGraphicsGetImageFromCurrentImageContext() {
        return image
    }
    return nil
}

Как я могу держать текст всегда в поле зрения пользователя, т.е.Поворот текста с помощью камеры / поворот сцены?

1 Ответ

0 голосов
/ 26 октября 2018

Наконец достигнуто это путем добавления dotNode.constraints = [SCNBillboardConstraint()] после создания dotNode.

...