Anyone able to get Timer working

do i need a new version to use org.lwjgl.util.Timer???
package cannot be found, anyone else get this or do i need a new lwjgl??
thanks

It’s in lwjgl_util.jar

Cas :slight_smile:

anyone had any luck with the timer??

 public long currentTimeMillis() 
 {
       timer.tick();
       System.out.println("Timer = " + timer.getTime());
       return (long) (timer.getTime()*1000f);
    } 

produces some weird results, i thought it might increment but it seems to pass between negatives and positives! :stuck_out_tongue:

can the timer be used to move objects at a constant rate, and by varying it, speed them up?
thanks