Inheritance: AbstractTweenProperty
Example #1
0
    /// <summary>
    /// anchorMax tween
    /// </summary>
    public GoTweenConfig anchorMax( Vector2 endValue, bool isRelative = false )
    {
        var prop = new AnchorMaxTweenProperty( endValue, isRelative );
        _tweenProperties.Add( prop );

        return this;
    }
    public GoTweenConfig anchorMax(Vector2 endValue, bool isRelative = false)
    {
        AnchorMaxTweenProperty item = new AnchorMaxTweenProperty(endValue, isRelative);

        _tweenProperties.Add(item);
        return(this);
    }