Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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 /
  • Help Room /
avatar image
0
Question by goodgamershow · Jun 24, 2021 at 10:09 AM · collider2dontriggerenter2ddestroygameobject

Destroyed gameObject keeps colliding with player

I have 3 game objects: 1st is enemy, 2nd is player and 3rd is shield.

Enemy has a circle collider2d and IsTrigger checked.

Player has rigidbody2d + circle collider2d.

Shield has a circle collider2d and IsTrigger checked + it's Player's child(So it would move with Player). Shield's collider is slightly bigger than Player's collider.

When enemy hits a player(i.e player is inside trigger collider), then player takes damage, but if Shield gameObject is active, then Enemy collides with shield and shield's SetActive is set to false again and enemy disappears(Destroys), without touching Player's collider(Because as I said, shield's collider is slightly bigger, than player's, that's why enemy must first collide with shield's collider).

So here's the problem: By default Player's shield is SetActive(false) and when player receives a buff(pressing button B), then Player's shield SetActive is set to true. When enemy collides with shield, it sets the shield gameObject back to false(which is correct), but then also it damages the player, and then enemy disappears. Even when checking the console, it's shown that enemy first collides with shield, and then immidiately with the player(but sometimes for some reason it collides with player first, and then with the shield, maybe because player is moving?)But sometimes code works as intended, i.e shield disappears and player doesn't take damage(chance for correct work of OnTriggerEnter2D is 50%/50%, but if player moves at high speed, absolutely always enemy destroys the shield and damages player) Here's the code of the enemy:

 private void OnTriggerEnter2D(Collider2D other) {
         if(other.CompareTag("Player_Shield")){  
             Destroy(gameObject);
             other.gameObject.SetActive(false); //turning off the shield
             Debug.Log("Collided with shield");
         }else if(other.CompareTag("Player")){
             playerRef.TakeDamage(1);
             Destroy(gameObject);
             Debug.Log("Collided with player");
         }
     }



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

163 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 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

reset destroyed collider after game restart 1 Answer

BoxCollider2D OnTriggerEnter2D 1 Answer

OnTriggerEnter2D problem 1 Answer

How to Disable Enemy's Collider When Stomped On? 0 Answers

How to remove/freeze timer on Destroy() 2 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