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 /
avatar image
0
Question by JiveViking · Nov 02, 2020 at 12:08 AM · collision detectioncollider2dontriggerenter2d

Object is not colliding with wall colliders

I'm currently having an issue with an object's collision. It is an "axe" that swings in front of the player, and has a trigger collider. I am checking collision with void OnTriggerEnter2D. It collides with all other objects just fine, but it is supposed collide with walls, making a sound and damaging certain walls. I can clearly see in the scene that it's collider is overlapping with the collider of the wall. It is also on the same layer as other player weapons that are not having this issue. It's z position is also zero. Trying to use other methods such as OnTriggerStay2D or OnCollisionEnter2D isn't working either. The list of contacts is empty when passing through a wall. It isn't a layer issue, it isn't a position issue, I am struggling to figure out what the problem could be. Anybody have any idea of a solution?

Here is the script, as I said it calls the other tagged collisions without an issue

 void Start()
     {      
         count = 0.0f;
         startRot = transform.eulerAngles.z - 10;
         startRotq = Quaternion.Euler(transform.rotation.x, transform.rotation.y, startRot);
         desiredRot = transform.eulerAngles.z - 160;
         desiredRotq = Quaternion.Euler(transform.eulerAngles.x, transform.eulerAngles.y, desiredRot);       
     }
    
     void Update()
     {
         pushAngle = Quaternion.AngleAxis(transform.eulerAngles.z, Vector3.forward) * Vector3.right;
         if (count < 1.0f)
         {
             count += 1.0f * Time.deltaTime * Swingspeed;          
             transform.rotation = Quaternion.Slerp(startRotq, desiredRotq, count);
         }
     }
 
     void OnTriggerEnter2D(Collider2D col)
     {
         if (col.gameObject.tag == "Eweapon" || col.gameObject.tag == "Wall" || col.gameObject.tag == "dWall")
         {
             int randomSound = Random.Range(0, objImpact.Length - 1);
             GameObject newSource = Instantiate(sourceObj, transform.position, transform.rotation);
             newSource.GetComponent<projectileSound>().PlaySound(objImpact[randomSound]);
         }
         if (col.gameObject.tag == "Eweapon")
         {
             Destroy(col.gameObject);
             Targets--;
             if (Targets <= 0)
                 Destroy(gameObject);
         }
         if (col.gameObject.tag == "Enemy")
         {            
             col.GetComponent<Rigidbody2D>().AddForce(pushAngle * pushForce);
             int randomSound = Random.Range(0, enemyImpact.Length - 1);
             GameObject newSource = Instantiate(sourceObj, transform.position, transform.rotation);
             newSource.GetComponent<projectileSound>().PlaySound(enemyImpact[randomSound]);
             Targets--;
             if (Targets <= 0)
                 Destroy(gameObject);
         }
         if (col.gameObject.tag == "dWall")
         {
             if (col.gameObject.GetComponent<DestructableWall>() != null)
             {
                 col.gameObject.GetComponent<DestructableWall>().WallDamage(10);
             }
             else col.gameObject.GetComponentInParent<DestructableWall>().WallDamage(10);
         }    
     }





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

142 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

Related Questions

OnTriggerEnter2D & OnCollisionEnter2D Not Responding 1 Answer

2D colliders not work 1 Answer

OnTriggerEnter2D Collision not working 1 Answer

Trigger only one collider? 1 Answer

OnTriggerEnter2D being called by GameObject without the trigger 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