BBGamelib.CCScaleTo.startWithTarget C# (CSharp) Метод

startWithTarget() публичный Метод

public startWithTarget ( object aTarget ) : void
aTarget object
Результат void
		public override void startWithTarget (object aTarget)
		{
			base.startWithTarget (aTarget);
			_startScaleX = (_target as CCNode).scaleX;
			_startScaleY = (_target as CCNode).scaleY;
			_deltaX = _endScaleX - _startScaleX;
			_deltaY = _endScaleY - _startScaleY;
		}