Posts

Post not yet marked as solved
0 Replies
213 Views
Hello, Currently, my app only uses web view to load HTML data and external safari web view by link click. I have seen the following developer's details. So if HTML data load on web view needs data collection enabled, then which Types of data need to be added to data collection? Also. if we disable all types of Data collection from privacy. Is apple will allow you to submit the app? or Reject it? Any help will be appreciated. Thanks
Posted Last updated
.
Post not yet marked as solved
1 Replies
356 Views
Hello Everyone, As I have mentioned my app shows a line between two lips for the application of virtual lipstick color change. Following is my code used for lip color let faceGeometry = ARSCNFaceGeometry(device: device)         let faceNode = SCNNode(geometry: faceGeometry)         faceNode.geometry?.firstMaterial?.transparency = 0         guard let faceAnchor = anchor as? ARFaceAnchor else { return nil }         faceAnchors.insert(faceAnchor)         let material = faceGeometry?.firstMaterial! //        Shape of lips         material?.diffuse.contents =  imageLiteral(resourceName: "lipShape_old")         // Lipstick color         material?.normal.contents = lipstickColor         material?.multiply.contents = lipstickColor         // More realistic         material?.lightingModel = .physicallyBased         material?.transparency = 0.82 masks.insert(faceNode)         return faceNode Please check that. Any help will be appreciated. Thanks
Posted Last updated
.