Post

Replies

Boosts

Views

Activity

ARKit application shows line between lips color. How can we get rid of that ?
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
1
0
488
Jul ’22
My app uses web view to load html data within app. Is that needs App Tracking Transparency?
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
0
0
484
Mar ’24