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 /
avatar image
0
Question by noise54 · Jun 30, 2017 at 03:03 PM · coroutineoncollisionenter

Invincible after collision

Hi,

I'm making a physics game where if you hit something with great enough velocity you take damage. What I'm trying to do here is to add invincible time after on collision. I have a coroutine with a float time that makes invincible true after on collision. I thought this would work and been searching everywhere but can't find answers.

Thanks for any help.

public int attackDamageLow = 10; public int attackDamageMid = 20; public int attackDamageHigh = 30; public float hitDelay =5f; private bool Invincible = false;

 GameObject player;
 Health playerHealth;
 //EnemyHealth enemyHealth;
 bool playerInRange;
 float timer;

 // Use this for initialization
 void Awake () 
 {
     player = GameObject.FindGameObjectWithTag ("MainPlayer");
     playerHealth = player.GetComponent<Health> ();
     //enemyHealth = GetComponent<EnemyHealth> ();
 }

 void OnCollisionEnter (Collision other)
 {
     if (!Invincible) {

         if (other.gameObject == player) {
             float mag = other.relativeVelocity.magnitude;
             if (mag > 40f) {
                 
                 AttackHigh ();
                 Debug.Log ("S");
                 StartCoroutine (Delay ());
             } else if (mag > 20f) {
                 
                 AttackMid ();
                 Debug.Log ("M");
                 StartCoroutine (Delay ());
             }

             else if (mag > 10f) {
                 
                 AttackLow ();
                 Debug.Log ("H");
                 StartCoroutine (Delay ());
             }
     



             }
     }

     }







 void AttackLow ()
 {
     //timer = 0f;

     if(playerHealth.currenthealth >0)
     {
         playerHealth.takeDamage (attackDamageLow);

     }
 }

 void AttackMid ()
 {
     //timer = 0f;

     if(playerHealth.currenthealth >0)
     {
         playerHealth.takeDamage (attackDamageMid);

     }
 }

 void AttackHigh ()
 {
     //timer = 0f;

     if(playerHealth.currenthealth >0)
     {
         playerHealth.takeDamage (attackDamageHigh);

     }
 }

 IEnumerator Delay()
 {
     Invincible = true;
     Debug.Log ("True");
     yield return new WaitForSeconds (hitDelay);
     Debug.Log ("false");
     Invincible = false;
 }



}

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by hexagonius · Jun 30, 2017 at 04:49 PM

Do you get the "H" log? Have you checked the variable values in the inspector being above 0? (sometimes you add a default to a variable after it was read by Unity once, which does not get written to it and therefore stays 0).
If those are not the cases, what is the problem, what is happening?

Comment
Add comment · Show 1 · 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 noise54 · Jul 01, 2017 at 12:10 AM 0
Share

Hexagonius, thanks for the answer. Yeah it was set to 0. Stupid on my part, it's working now.

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

69 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

Related Questions

OnCollisionEnter as IEnumerator problem (WaitForSecond) 2 Answers

How to end a coroutine early 0 Answers

Powerup issue - Speed 1 Answer

[SOLVED]Coroutine method called in OnCollisionEnter() not being called for each collision on chronological order ?! 1 Answer

Changing transform.localScale but OnCollisionEnter isn't executed 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