google-code-export / tweener

Automatically exported from code.google.com/p/tweener

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The"ever engine" occurs

GoogleCodeExporter opened this issue · comments

When Tweener trying to modify some property, that's value cannot be set the 
tween will not reach the end irrespective of time parameter.

E.g.

public function set val( n:Number ):void
{
_myval = ( _myval + n ) / 2;
}
public function get val():Number
{
return _myval;
}

Tweener.addTween( this , { val : 10 , time : 0.5 } ); //will try to set it 
almost ever, not time!

Original issue reported on code.google.com by oleg.nu...@gmail.com on 3 Aug 2011 at 9:50