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 /
This question was closed Feb 15, 2018 at 02:07 AM by Mansmart10 for the following reason:

The question is answered, right answer was accepted

avatar image
0
Question by Mansmart10 · Feb 14, 2018 at 08:57 PM · inputbugbullet

Bullet Bug

Every time the bullet hits the player by accident input features stop working. For example the player can't go up or down the ladder freely using the arrow keys, or the player can't buy ammo by pressing the "e" key.

 void OnCollisionEnter2D(Collision2D coll)
     {
         var hit = coll.gameObject;
         var hitplayer = hit.transform.tag = "Enemy";
         if (hitplayer != null)
         {
             var Zomhealth = hit.GetComponent<ZombieHealth>();
             Debug.Log("hit");
             Zomhealth.ZomDamage(damage);
             Destroy(gameObject);
         }
     }
Comment
Add comment · Show 5
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 TreyH · Feb 14, 2018 at 09:17 PM 0
Share

What is this line supposed to do?

 var hitplayer = hit.transform.tag = "Enemy";
avatar image Mansmart10 TreyH · Feb 14, 2018 at 10:47 PM 0
Share

This gets the reference of the enemy.

avatar image Mansmart10 · Feb 14, 2018 at 10:46 PM 0
Share

I tried this if (coll.gameObject.tag == "Player" || coll.gameObject.tag == "Ground") { Physics2D.IgnoreCollision(coll.collider, coll.collider); } but it didn't work.

avatar image Mansmart10 Mansmart10 · Feb 14, 2018 at 10:48 PM 0
Share
     void OnCollisionEnter2D(Collision2D coll)
     {
         var hit = coll.gameObject;
         var hitzombie = hit.gameObject.tag = "Enemy";
         if (hitzombie != null)
         {
             if (coll.gameObject.tag == "Player" || coll.gameObject.tag == "Ground")
             {
                 Physics2D.IgnoreCollision(coll.collider, coll.collider);
             }
             var Zomhealth = hit.GetComponent<ZombieHealth>();
             Debug.Log("hit");
             Zomhealth.ZomDamage(damage);
             Destroy(gameObject);
         }
     }
avatar image Mansmart10 · Feb 14, 2018 at 11:49 PM 0
Share

I think I found an answer http://www.theappguruz.com/blog/ignore-collision-using-layer-and-tag-concept

1 Reply

  • Sort: 
avatar image
0
Best Answer

Answer by Mansmart10 · Feb 15, 2018 at 02:07 AM

Fixed it b/c of this website http://www.theappguruz.com/blog/ignore-collision-using-layer-and-tag-concept

Comment
Add comment · 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

Follow this Question

Answers Answers and Comments

91 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

Related Questions

iPhoneKeyboard.Open cannot handle multiple entries. Is it a bug? 1 Answer

[BUG?] CrossPlatformInputManager - button keeps down state after new scene is loaded 0 Answers

Input.GetJoystickNames are send me the wrong order of joysticks 1 Answer

First button press don't always register after scene load. 0 Answers

ArgumentException: Input Key named: LeftAlt is unknown 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