Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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
2
Question by tianika · Jul 11, 2014 at 01:54 PM · enemybulletcollide

Bullet and Enemy can't collide and execute functions

I've already tagged the gameObjects which is the bullet and enemy with the correct names. They have their own colliders as well with rigidbody too however the bullets will not execute the function to destroy the enemy gameobject and give me the score that I should get.

what is attached to the bullet prefab

using UnityEngine; using System.Collections;

public class bulletCollide : MonoBehaviour {

 // Use this for initialization
 void Start () {
 
 }
 
 // Update is called once per frame
 void Update () {
 
 }

 void OnCollisionEnter(Collision collision){
     if (collision.gameObject.tag == "enemy"){
         spawnEnemy cs = collision.gameObject.GetComponent<spawnEnemy>();
     }
 }

}

what is attacked to the enemy prefab:

public class spawnEnemy : MonoBehaviour { public Transform enemy = null; public int health = 8;

     void OnEnterCollision(Collision collision) {
     if (collision.gameObject.tag == "bullet") {
         health --;
         if (health <= 0) {
             HUD hud = GameObject.Find ("Main Camera").GetComponent<HUD> ();
             hud.hitEnemy ();
             Destroy (gameObject);
         }
     }
 }

}

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 tianika · Jul 11, 2014 at 03:26 PM 0
Share

I've tried using Collider ins$$anonymous$$d, but it still occur the same problem. Thanks for helping though :)

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by SepM · Jul 11, 2014 at 02:04 PM

This is a very common issue in Unity. (Kinda wish they'd make it easier to figure out... ^_-')

I've run into the same problem. Instead of Collision, I use Collider.

 void OnEnterCollision(Collider collision) {

Also, you can try Rigidbody in place of Collision, but I actually prefer triggers. In my JavaScript, I have:

 function OnTriggerEnter(collision : Collider){
     if(collision.gameObject.tag == "Player"){
 }

This is a really annoying hurdle to get over for most/all of us. I hope you get beyond it!

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

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

Multiple Cars not working 1 Answer

How to destroy bullet on collision! 2 Answers

I made a better shader how do i fix[add _Shadow Strength]help???>Sorry that im asking for to much 1 Answer

Script Not counting enemy kills. 1 Answer

collision with objects, physics 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