Когда я использую анимацию морфинга для модели, модель автоматически превращается в жесткую кромку. Как нам избежать таких изменений?
let animation = CABasicAnimation(keyPath: "morpher.weights[0]")
animation.fromValue = 0.0
animation.toValue = 1.0
animation.autoreverses = true
animation.repeatCount = MAXFLOAT
animation.duration = 0.25
face.addAnimation(animation, forKey: nil)
There could be three potential problems causing your model to show hard edges at animation:
Предположительно, у вас могут быть все перечисленные проблемы сразу или только одна из них.