Scale
public enum Scale
How much the scale of an animation should change. This value changes based off of which type of StockAnimation
is used.
- slightly: slightly animate the object
- moderately: the object should scale a moderate amount
- severely: the object should scale very noticeably
- toScale: provide your own scale value that you feel the object should grow/shrink
-
slightly animate the object
Declaration
Swift
case slightly
-
the object should scale a moderate amount
Declaration
Swift
case moderately
-
the object should scale very noticeably
Declaration
Swift
case severely
-
provide your own scale value that you feel the object should grow/shrink
Declaration
Swift
case toScale(CGFloat)