| 342 | } |
| 343 | |
| 344 | void AnimScript::stop(quint64 timestamp){ |
| 345 | if(!initialized) |
| 346 | return; |
| 347 | if(!process) |
| 348 | begin(timestamp); |
| 349 | advance(timestamp); |
| 350 | if(process) |
| 351 | process->write("stop\n"); |
| 352 | } |
| 353 | |
| 354 | void AnimScript::keypress(const QString& key, bool pressed, quint64 timestamp){ |
| 355 | if(!initialized) |
nothing calls this directly
no outgoing calls
no test coverage detected