Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
2 captures
12 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 chesterhilly · Jul 24, 2016 at 05:51 PM · c#collisioncollision detectionontriggerenterzombie

Lose Health when GameObject enters collider? (OnTriggerEnter)

So i have a script, and I have poked around for many hours but i cant find out how to make the health count decrease when a set gameObject enters the collider.

In my its a zombie and when the fps controller enters it will decrease in health.

The Is Trigger is checked.

anyone know how to do this? thanks and heres my script:

 using UnityEngine;
 using System.Collections;
 
 public class HealthCount : MonoBehaviour {
 
     public int health = 100;
 
     void Update() {
         Debug.Log (health);
 
         if (health <= 0) {
             Application.LoadLevel ("GameOver");
         }
     }
 
     void OnTriggerEnter () {
             health--;
     }
 }
Comment
Add comment · Show 4
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 chesterhilly · Jul 24, 2016 at 05:54 PM 0
Share

This was one of my codes for the OnTriggerEnter $$anonymous$$ethod: void OnTriggerEnter () { if (gameObject.name == "FPSController") { health--; } }

avatar image chesterhilly · Jul 24, 2016 at 05:56 PM 0
Share

Use this link to view the OnTriggerEnter $$anonymous$$ethod more clearly: http://pastebin.com/k054$$anonymous$$86i

avatar image Nitin22 · Jul 24, 2016 at 06:17 PM 1
Share

void OnTriggerEnter(Collider other) { if (other.name == "FPSController") { health--; } }

avatar image chesterhilly Nitin22 · Jul 24, 2016 at 06:27 PM 0
Share

@nitin22 Thanks it's working now, i'm not the best with c# yet I first started with unity nearly 3 years ago.

if you want to make it an answer then I will make it into a best answer.

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by Nitin22 · Jul 24, 2016 at 06:49 PM

void OnTriggerEnter(Collider other) { if (other.name == "FPSController") { health--; } }

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 $$anonymous$$ · Jul 24, 2016 at 07:54 PM 0
Share

You might want to edit your code. That looks like a mess.

avatar image chesterhilly · Jul 24, 2016 at 08:55 PM 0
Share

@nitin22 ^^^

avatar image
1

Answer by $$anonymous$$ · Jul 24, 2016 at 07:03 PM

Try something like this, it will make your health decrease over time as long as you're inside the OnTriggerEnter.

 using UnityEngine;
  using System.Collections;
  
  public class HealthCount : MonoBehaviour {
  
      public int health = 100;
      public float healthSpeedMultiplier = 0.25f;
  
      void Update() {
          Debug.Log (health);
  
          if (health <= 0) {
              Application.LoadLevel ("GameOver");
          }
      }
  
      void OnTriggerEnter () {
              health -= Time.deltaTime * healthSpeedMultiplier;
      }
  }
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 chesterhilly · Jul 24, 2016 at 08:49 PM 0
Share

@$$anonymous$$ change the OnTriggerEnter to this:

http://pastebin.com/hhcjW2jk

avatar image chesterhilly · Jul 24, 2016 at 08:56 PM 0
Share

(add it in)

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

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

OnTriggerEnter only works on one collision? 0 Answers

Who collided first 0 Answers

OnTrigger Problems Between Colliders Issue 1 Answer

Object refuses to collide 0 Answers

Properly attach to a GameObject after collision? 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