GrabbableSizedObject.GetMoveToNotGrabbedPosition C# (CSharp) Method

GetMoveToNotGrabbedPosition() protected method

protected GetMoveToNotGrabbedPosition ( ) : Vector3
return Vector3
    protected override Vector3 GetMoveToNotGrabbedPosition()
    {
        if (objectBelow)
        {
            return objectBelow.transform.position + Vector3.up * 0.15f;
        }

        return lastPosition;
    }