BBGamelib.CCRotateTo.update C# (CSharp) Method

update() public method

public update ( float t ) : void
t float
return void
		public override void update (float t)
		{
			((CCNode)_target).rotation = _startAngle + (_diffAngle * t);
		}