Exemplo n.º 1
0
    /// <summary>
    /// anchoredPosition3D tween
    /// </summary>
    public GoTweenConfig anchoredPosition3D( Vector3 endValue, bool isRelative = false )
    {
        var prop = new AnchoredPosition3DTweenProperty( endValue, isRelative );
        _tweenProperties.Add( prop );

        return this;
    }
    public GoTweenConfig anchoredPosition3D(Vector3 endValue, bool isRelative = false)
    {
        AnchoredPosition3DTweenProperty item = new AnchoredPosition3DTweenProperty(endValue, isRelative);

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