checking if grounded without using oncollision enter/exit?

83 Views Asked by At

so I have a script that rotates a cube (by 90 degrees when a direction is pressed) currently im using the oncollision enter to detect walls and when I try to use it to also check if grounded then it will just completely stop everything when i leave one collision and enter another, or it won't fully check when im in mid air and will allow me to move when i don't want to be able to. Any and all help is greatly appreciated.

{
bool isGrounded = true;

private Rigidbody2D rb;

bool leftInput = true;
bool rightInput = true;

public float RollingDuration = 0.2f;

// Start is called before the first frame update
void Start()
{
    rb = GetComponent<Rigidbody2D>();
}

// fixed update is for physics
void FixedUpdate()
{
    var dir = Vector3.zero;

    if (Input.GetKey(KeyCode.LeftArrow) && leftInput && isGrounded)
    {
        dir = Vector3.left;
    }
    if (Input.GetKey(KeyCode.RightArrow) && rightInput && isGrounded)
    {
        dir = Vector3.right;
    }
    if (dir !=Vector3.zero && !isRolling)
    {
        StartCoroutine(Roll(dir));
    }


}

private void OnCollisionEnter2D(Collision2D collision)
{
    //check to see if our player is grounded
    if (collision.gameObject.tag == "Grounded")
        {
        isGrounded = true;
        }

    if (collision.gameObject.tag == "LeftWall" || collision.gameObject.tag == "RightWall")
    {
        StopCoroutine("Roll");
      
        if (collision.gameObject.tag == "LeftWall")
        {
            leftInput = false;
            // we are grounded when touching walls
            isGrounded = true;
        }
        if (collision.gameObject.tag == "RightWall")
        {
        
            rightInput = false;
            // we are grounded when touching walls
            isGrounded = true;

        }
        if (collision.gameObject.tag == null)
        {
            isGrounded = false;
        }
        else
        {
            isRolling = false;
            rb.velocity = Vector2.zero;
            rb.velocity = new Vector2(0.0f, 0.0f);
            rb.angularVelocity = 0.0f;
            rb.transform.rotation = Quaternion.Euler(0.0f, 0.0f, 0.0f);
            rb.rotation = 0.0f;
        }
    }
}


bool isRolling = false;
IEnumerator Roll(Vector3 direction)
{
    if (direction == Vector3.right && isGrounded)
    {
        leftInput = true;
    }
    else if (direction == Vector3.left && isGrounded)
    {
        rightInput = true;
    }
    isRolling = true;
    
    var rotAxis = Vector3.Cross(Vector3.up, direction);
    var pivot = (rb.transform.position + Vector3.down * 0.5f) + direction * 0.5f;

    var startRotation = rb.transform.rotation;
    var endRotation = Quaternion.AngleAxis(90.0f, rotAxis) * startRotation;

    var startPosition = rb.transform.position;
    var endPosition = rb.transform.position + direction;

    var rotSpeed = 90.0f / RollingDuration;
    var t = 0.0f;

    while (t < RollingDuration && isGrounded)
    {
        t += Time.deltaTime;
        if (t < RollingDuration && isGrounded)
        {
            rb.transform.RotateAround(pivot, rotAxis, rotSpeed * Time.deltaTime);
            yield return null;
        }
        else
        {
            rb.transform.rotation = endRotation;
            rb.transform.position = endPosition;
        }
    }
    isRolling = false;

}

}

1

There are 1 best solutions below

0
On

I think the most simple and common way to do ground checks is with casting a ray. So just cast a ray into the direction you want to check or try Overlap functions.

Example:

if(Physics.OverlapCircle(point, radius, layerMask)) {
    //do stuff
}

So just cast a ray in all direction you want to check or add a overlap function to each side of the cube.