Provide animation duration.

This commit is contained in:
John Preston 2019-05-02 16:42:47 +04:00
parent 2f02198ac7
commit d1518da1ad
1 changed files with 4 additions and 0 deletions

View File

@ -107,6 +107,10 @@ int Animation::frameRate() const {
return _frameRate;
}
crl::time Animation::duration() const {
return (_endFrame - _startFrame) * crl::time(1000) / _frameRate;
}
void Animation::play(const PlaybackOptions &options) {
_options = options;
_started = crl::now();