Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions Sources/ARKit-CoreLocation/Nodes/LocationAnnotationNode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,34 @@ open class LocationAnnotationNode: LocationNode {

onCompletion()
}

private func updatePlane(_ plane: SCNPlane) {
annotationNode.geometry = plane
annotationNode.removeFlicker()
}

public func updateImage(_ image: UIImage) {
let plane = SCNPlane(width: image.size.width / 100, height: image.size.height / 100)
plane.firstMaterial?.diffuse.contents = image
plane.firstMaterial?.lightingModel = .constant

annotationNode.image = image
updatePlane(plane)
}

@available(iOS 10.0, *)
public func updateView(_ view: UIView) {
updateImage(view.image)
}

public func updateLayer(_ layer: CALayer) {
let plane = SCNPlane(width: layer.bounds.size.width / 100, height: layer.bounds.size.height / 100)
plane.firstMaterial?.diffuse.contents = layer
plane.firstMaterial?.lightingModel = .constant

annotationNode.layer = layer
updatePlane(plane)
}
}

// MARK: - Image from View
Expand Down