File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ public extension AnyChangeEffect {
12
12
enum ShakeRate {
13
13
case `default`
14
14
case fast
15
- case customPhaseLength ( CGFloat )
15
+ case phaseLength ( CGFloat )
16
16
17
17
fileprivate var phaseLength : CGFloat {
18
18
switch self {
19
19
case . default: return 0.8
20
20
case . fast: return 0.3
21
- case . customPhaseLength ( let phaseLength) : return phaseLength
21
+ case . phaseLength ( let phaseLength) : return phaseLength
22
22
}
23
23
}
24
24
}
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ public extension AnyChangeEffect {
10
10
enum WiggleRate {
11
11
case `default`
12
12
case fast
13
- case customPhaseLength ( CGFloat )
13
+ case phaseLength ( CGFloat )
14
14
15
15
fileprivate var phaseLength : CGFloat {
16
16
switch self {
17
17
case . default: return 0.8
18
18
case . fast: return 0.3
19
- case . customPhaseLength ( let phaseLength) : return phaseLength
19
+ case . phaseLength ( let phaseLength) : return phaseLength
20
20
}
21
21
}
22
22
}
You can’t perform that action at this time.
0 commit comments