* Create a shake tween * 创建震动补间
(
startX: number,
startY: number,
amplitude: number,
duration: number
)
| 125 | * 创建震动补间 |
| 126 | */ |
| 127 | public static shake( |
| 128 | startX: number, |
| 129 | startY: number, |
| 130 | amplitude: number, |
| 131 | duration: number |
| 132 | ): GTweener { |
| 133 | return TweenManager.createTween()._shake(startX, startY, amplitude, duration); |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Check if target is being tweened |
no test coverage detected