The timer tag has no wiki summary.
5
votes
3answers
816 views
Thread runs faster on a faster processor… how to control Thread speed
I have a thread that uses TimeUnit.MILLISECONDS.sleep(5);
Problem is when I load my app on a faster phone say with a snapdragon, it runs at lightning speed.
Is there a way to control this speed so ...
-2
votes
3answers
240 views
How to rotate to a target position over time
I know how to do rotations to vectors, but how do I rotate over time?
For instance say I made a function
RotateTo(vec2 iPosition, float iTime);
so it rotates to iPosition over iTime - how would ...