* @return {!Promise} * @private
()
| 197 | * @private |
| 198 | */ |
| 199 | runContinuing_() { |
| 200 | this.velocityX_ = this.maxVelocityX_; |
| 201 | this.velocityY_ = this.maxVelocityY_; |
| 202 | const boundStep = this.stepContinue_.bind(this); |
| 203 | const boundComplete = this.completeContinue_.bind(this, true); |
| 204 | return this.vsync_ |
| 205 | .runAnimMutateSeries(this.contextNode_, boundStep, 5000) |
| 206 | .then(boundComplete, boundComplete); |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * Returns "true" to continue and "false" to stop motion process. |
no test coverage detected