Fix camera path always playing from the beginning regardless of ctrl key

This commit is contained in:
johni0702
2016-10-23 14:45:14 +02:00
parent 4805e5e9f5
commit b240f8a276
3 changed files with 10 additions and 2 deletions

View File

@@ -46,6 +46,6 @@ public class RealtimeTimelinePlayer extends AbstractTimelinePlayer {
@Override
public long getTimePassed() {
return firstFrame ? 0 : System.currentTimeMillis() - startTime;
return startOffset + (firstFrame ? 0 : System.currentTimeMillis() - startTime);
}
}