arashbi / java-universal-tween-engine

Automatically exported from code.google.com/p/java-universal-tween-engine
0 stars 0 forks source link

public Timeline pushPause(int millis) documented to be in milliseconds when in fact in seconds #24

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.  Create a tween
2.  add the method pushPause( 3000 ); //to wait 3000 millis according to javadoc
3.  Tween executes presummaby 3000 seconds later instead of 3000 millis.
4.  Changing it to pushPaus(3) produces the expected result. 

What is the expected output? What do you see instead?
The tween should wait 3000 millis instead of 3000 seconds

What version of the product are you using? On what operating system?
http://www.aurelienribon.com/universal-tween-engine/javadoc/aurelienribon/tweene
ngine/Timeline.html

Please provide any additional information below.

Original issue reported on code.google.com by jeremyvillalobos on 25 Aug 2014 at 5:29