Inheritance: AbstractTweenProperty
    public GoTweenConfig sizeDelta(Vector2 endValue, bool isRelative = false)
    {
        SizeDeltaTweenProperty item = new SizeDeltaTweenProperty(endValue, isRelative);

        _tweenProperties.Add(item);
        return(this);
    }
Exemplo n.º 2
0
	/// <summary>
	/// sizeDelta tween
	/// </summary>
	public GoTweenConfig sizeDelta( Vector2 endValue, bool isRelative = false )
	{
		var prop = new SizeDeltaTweenProperty( endValue, isRelative );
		_tweenProperties.Add( prop );
		
		return this;
	}