We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello Miquido Team
I noticed that with multiple images, every image is only detected once.
Example: I have 2 images
I found a easy fix, maybe this is already the right way.
Replace
class ARQuidoViewController: UIViewController { ... if let nodeToRemove = detectedImageNode { nodeToRemove.removeFromParentNode() } ... }
with
private var lastImageAnchor: ARImageAnchor? ... class ARQuidoViewController: UIViewController { ... if let nodeToRemove = detectedImageNode { nodeToRemove.removeFromParentNode() if (lastImageAnchor != nil) { sceneView.session.remove(anchor: lastImageAnchor!) } } ... }
The text was updated successfully, but these errors were encountered:
Hello @hohler!
Looks good - would you mind creating a PR for it?
Sorry, something went wrong.
PiotrMitkowski
No branches or pull requests
Hello Miquido Team
I noticed that with multiple images, every image is only detected once.
Example: I have 2 images
I found a easy fix, maybe this is already the right way.
Replace
with
The text was updated successfully, but these errors were encountered: