Is there any way we can load web content in Node in ARKit?
I have tried diffusing the contents of a WebView as Material for SCNPlane. HTML content isn't visible.
The same works well with UIWebView. Unfortunately, it is deprecated.
I have tried diffusing the contents of a WebView as Material for SCNPlane. HTML content isn't visible.
The same works well with UIWebView. Unfortunately, it is deprecated.
Code Block let webView = WKWebView(frame: CGRect(x: 0, y: 0, width: 640, height: 480)) let request = URLRequest(url: URL(string: "https://www.apple.com")!) webView.load(request) plane.firstMaterial?.diffuse.contents = webView