Posts

Post marked as solved
3 Replies
ARKit supported devices with A9 ChipSet
Post not yet marked as solved
3 Replies
here i am facing issue with 3d models (usdz) scale if i give scale SCNVectorMake(0.1,0.1,0.1) to model A its becoming very small in size and if i give same scale to model B its reducing less amount of size , i.e scale value is changing model to model. so give me any solution for this problem . here i am using ARKit 3 with ARSCNView.Thanks in advance.
Post not yet marked as solved
2 Replies
initialize SCNNode in below methodpublic func renderer(_ renderer: SCNSceneRenderer, nodeFor anchor: ARAnchor) -> SCNNode? { let node = SCNNode()//here give you code for create 3d model return node}hope it will work try once give me feedback,Thanks
Post not yet marked as solved
2 Replies
Hello thanks for your reply i need gestures for move , rotate and scale the 3D model in arkit .
Post not yet marked as solved
1 Replies
Hi we can load obj file in arkit i have done in my project its working.find below code to load obj file.SCNScene * scene = [SCNScene sceneWithURL:self.objPathURL options:nil error:&error];Note:-# self.objPathURL will be you 3D model .Obj file path.