public void OnFingerSwipe(Lean.LeanFinger finger)
    {
        // Make sure the info text exists
        if (gameObject != null)
        {
            Vector3 rbForce = finger.GetDeltaWorldPosition(force, cam);
            //rbForce+=new Vector3(0f,force,0f);

            GetComponent <Rigidbody>().AddForce(rbForce);
        }
    }