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
1
Question by saintAlbie · Feb 23, 2018 at 11:35 AM · physics2doncollisionentercollision2doncollisionexit

OnCollisionEnter2D and OnCollisionExit2D issue

Trying to have two colliders ignore each other if they are of similar color. If I have no oncollisionexit2d method the ignore collision effect is permanent, which I do not want. If i do have an oncollisionexit2d method, both the enter and exit methods are called before the collider is able to pass through, essentially "pushing" the moving collider out and not allowing it to pass through. Using boxcollider2d for door and circlecollider2d for player.

private void OnCollisionEnter2D(Collision2D other) { if (other.gameObject.tag == "Door") { print("Player entered door."); objSpriteRenderer = other.gameObject.GetComponent(); objCollider = other.gameObject.GetComponent(); objColor = objSpriteRenderer.color; if (Mathf.Abs(objColor.b - color.b) <= 0.05F) { Physics2D.IgnoreCollision(objCollider, playerCollider); OnCollisionEnterTriggered = true; } } } private void OnCollisionExit2D(Collision2D other) { if (other.gameObject.tag == "Door") { if (!OnCollisionEnterTriggered) { print("Player exited door."); Physics2D.IgnoreCollision(objCollider, playerCollider, false); } } }

Comment
Add comment · Show 1
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
avatar image tormentoarmagedoom · Feb 23, 2018 at 11:41 AM 0
Share

And OnCollisionStay?

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by WbrJr · Feb 23, 2018 at 02:16 PM

For everyone how wants to help....


Trying to have two colliders ignore each other if they are of similar color. If I have no oncollisionexit2d method the ignore collision effect is permanent, which I do not want. If i do have an oncollisionexit2d method, both the enter and exit methods are called before the collider is able to pass through, essentially "pushing" the moving collider out and not allowing it to pass through. Using boxcollider2d for door and circlecollider2d for player.


 private void OnCollisionEnter2D(Collision2D other) 
     { 
     if (other.gameObject.tag == "Door") 
     {
         print("Player entered door."); 
         objSpriteRenderer = other.gameObject.GetComponent();
         objCollider = other.gameObject.GetComponent();
         objColor = objSpriteRenderer.color;


         if (Mathf.Abs(objColor.b - color.b) <= 0.05F)     
         { 
             Physics2D.IgnoreCollision(objCollider, playerCollider); 
             OnCollisionEnterTriggered = true; 
         } 
     } 
 } 
 
 
 private void OnCollisionExit2D(Collision2D other) 
     { 
 
     if (other.gameObject.tag == "Door") 
     { 
         if (!OnCollisionEnterTriggered) 
         { 
             print("Player exited door."); 
             Physics2D.IgnoreCollision(objCollider, playerCollider, false); 
         } 
     }
 }



I think something like this should work:


   private void OnCollisionEnter2D(Collision2D other)
     {
         if((other.gameObject.tag== "Door") && (gameObject.GetComponent<SpriteRenderer>().color == other.gameObject.GetComponent<SpriteRenderer>().color))
         {
             print("Wow");
             Physics2D.IgnoreCollision(other.gameObject.GetComponent<Collider2D>(), gameObject.GetComponent<Collider2D>());
         }
     }


I hope I did not miss anything, and hope I could help out..

Have a nice day Greetings,

WbrJr

Comment
Add comment · Show 2 · Share
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
avatar image saintAlbie · Feb 25, 2018 at 04:44 AM 0
Share

Thank you for fixing the formatting. However, they ignore collision works fine. The problem is that I want to set ignore collision back to false one the player passes through the door. If I add an oncollisionexit method the player cannot pass through the door. I am trying to figure out why oncollisionexit is being called when the player is still in the door. $$anonymous$$y understanding is that oncollisionexit should be called when the two colliders are no longer touching, but that does not seem to be the way it is working.

avatar image WbrJr saintAlbie · Mar 01, 2018 at 06:52 PM 0
Share

As far as i understand:

the OnCollisionExid does not work, because the collision is ignored :D

so you could make a timer which activates the door after a few secounds...

or check the distance to the player and if it is bigger than 0.5 or so the collider gets activated again.

I hope i gave you an working idea :D

have a nice day

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

78 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

OnCollisonEnter2D not working 0 Answers

Track all colliding Collider2D. 1 Answer

OnCollisionStay2D not working in the way I would like. 1 Answer

Different collision results in some areas. 1 Answer

Why do two colliders cross at high force? 0 Answers


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