Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Location annotation node update image #280

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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