Fast-forward?
in
Programming Questions
•
2 years ago
How would I implement a fast-forward into my sketch, without losing data? I can't just up the FrameRate because it's running at around 30fps and the max it can run is around 45-50fps, which isn't even 2x. I really need a 4x speed.
I can't see how this is possible, unless I have a variable that makes everything 4x it's original value, but then that would mean losing a lot of data, ie. an 'if (var == 0)', when 'var--;' is running every frame, would end up missing a lot if var is dropping by 4 instead of 1 each frame. Any ideas?
1