* @function TimeControlBase.prototype.start * @description 开始。
()
| 158 | * @description 开始。 |
| 159 | */ |
| 160 | start() { |
| 161 | var me = this; |
| 162 | |
| 163 | if (!me.running) { |
| 164 | me.running = true; |
| 165 | me.tick(); |
| 166 | me.events.triggerEvent('start', me.currentTime); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | |
| 171 | /** |
no test coverage detected