Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by zrol84 · May 23, 2017 at 06:29 AM · collisionphysicsunity 2dcheckbox

Physics.CheckBox not detecting collisions?

Hi,

So I am trying to detect if my player is on the ground (in Unity 2D). I initially used a raycast downward to detect the collider of the ground, but this does not account for collisions on the bounds of the players collider. What I mean by that is if the player is standing just off the edge where the center of the player is not directly above the ground, but the player's edge is still colliding with the ground, the code thinks the player is not grounded. So I tried using Physics.CheckBox to just check an area under the player. Below is the code I am using. I removed a lot of the clutter code just to show you guys how I am implementing this. I have the player starting at (0, 0), a long rectangle for the ground under him. Both objects have colliders and rigid body, remember the raycast did work. The raycast I used is commented out in the IsGrounded function so you guys can see that too. Any ideas as to why this is not detecting collisions?

Thanks

Zach

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class PlayerController : MonoBehaviour {
 
     private void Start()
     {
         spriteRenderer = GetComponent<SpriteRenderer>();
         animator = GetComponent<Animator>();
         rb = GetComponent<Rigidbody2D>();
         collide = GetComponent<Collider2D>();
         distToGround = collide.bounds.extents.y;
     }
 
     private bool IsGrounded()
     {
         float distFromBoundToCenter = 0.02f;
 
         //return Physics2D.Raycast(transform.position + new Vector3(0f, -distToGround-0.01f), new Vector3(0f, -1f), 0.01f);
         return Physics.CheckBox(collide.bounds.center - new Vector3(0f, collide.bounds.extents.y + distFromBoundToCenter, 0f),
             new Vector3(collide.bounds.extents.x, distFromBoundToCenter - 0.001f, 0f));
     }
 
     private void Update()
     {    
         if (IsGrounded())
         {
             print("grounded");
         }
     }
 }

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Object with rigidbody bounces after hit. 0 Answers

Is Use Full Kinematics Contact bugged in 5.6.1? 0 Answers

How to send collision points to the physics engine? 2 Answers

Physics.CheckBox() Alternatives 0 Answers

Wind physics script 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges