FashGek / hotween

Automatically exported from code.google.com/p/hotween
0 stars 0 forks source link

PlugRect.cs DoUpdate broken #30

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
in PlugRect.cs DoUpdate Line 231:

rect.y = typedStartVal.y + diffChangeVal.x * time; ;

should be:

rect.y = typedStartVal.y + diffChangeVal.y * time;

Original issue reported on code.google.com by ramstedt...@gmail.com on 28 May 2012 at 10:15

GoogleCodeExporter commented 9 years ago
Wow, don't know how those got in there. Thanks for noticing, and it's fixed.

Original comment by daniele....@gmail.com on 28 May 2012 at 4:30

GoogleCodeExporter commented 9 years ago
It is still broken, diffChangeVal.x should be diffChangeVal.y

Original comment by ramstedt...@gmail.com on 29 May 2012 at 7:17

GoogleCodeExporter commented 9 years ago
Sorry, I noticed the redundant semi-colon and thought that was the error. Now 
it's really fixed, and thanks again.

Original comment by daniele....@gmail.com on 29 May 2012 at 8:09