Commit 787abddb by Daniel Dahan

fixed rotation animation key name in MotionAnimations API

parent 67550d30
......@@ -81,10 +81,10 @@ public enum MotionAnimationKeyPath: String {
case borderWidth
case cornerRadius
case transform
case rotate = "transform.rotate"
case rotateX = "transform.rotate.x"
case rotateY = "transform.rotate.y"
case rotateZ = "transform.rotate.z"
case rotate = "transform.rotation"
case rotateX = "transform.rotation.x"
case rotateY = "transform.rotation.y"
case rotateZ = "transform.rotation.z"
case scale = "transform.scale"
case scaleX = "transform.scale.x"
case scaleY = "transform.scale.y"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment