我正在开发一个ARKit项目,当在水平平面上点击时需要Ripple动画效果。为此,我已经获取了UIView对象并将其作为SCNPlane对象的材料的内容传递。我已经为UIView对象添加了Ripple动画。一切正常。但我不能改变SCNPlane颜色来清除颜色。我可以使用材质的透明属性。但它也隐藏了Ripple动画。所以,我需要的是,SCNPlane对象的背景颜色应该是透明的,并且只有Ripple动画应该出现给用户。有人可以帮我这个。
这是我的代码。
let location = tapGesture.location(in: self.sceneView)
let results = self.sceneView.hitTest(location, types: .existingPlane)
if !results.isEmpty{
guard let result = results.first else{ return }
let myUIView = UIView(frame: CGRect(origin: .zero, size: CGSize(width: 300, height: 300)))
myUIView.backgroundColor = .red
let plane = SCNPlane(width: 1.0, height: 1.0)
plane.firstMaterial?.diffuse.contents = myUIView
let planeViewNode = SCNNode(geometry: plane)
planeViewNode.eulerAngles.x = Float(-Double.pi / 2)
planeViewNode.position = SCNVector3(result.worldTransform.columns.3.x, result.worldTransform.columns.3.y, result.worldTransform.columns.3.z)
self.sceneView.scene.rootNode.addChildNode(planeViewNode)
//Ripple animation code goes here
}