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 mvirga · Sep 12, 2017 at 03:24 AM · regeneratehealth

So I am trying to make my character regenerate health but reset the time it takes to regen when they are hit. I'm lost and have been at it for hours thanks in advance

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI;

public class Player_Health : MonoBehaviour { private float start_Health; private float current_health; public Image HealthBar; private float regen; private float regenerate = 10f;

 // Use this for initialization
 void Start () {
     start_Health = 100;
     current_health = start_Health;
 }
 public void OnTriggerEnter(Collider col)
 {
     if (col.tag == "Enemy")
     {
         current_health -= 10;
         Debug.Log(current_health);
         HealthBar.fillAmount = current_health / start_Health;
     }
 }
     public void regenerating()
 {
      if ((Time.time > regenerate) && (current_health < start_Health))
         {
             current_health += 10;
             Debug.Log(current_health);
             HealthBar.fillAmount = current_health / start_Health;
         }
 }
        
     
    
 

        
 // Update is called once per frame
 void Update ()
 {       
         regenerating();
 }

}

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
1
Best Answer

Answer by $$anonymous$$ · Sep 12, 2017 at 03:38 AM

You probably want to do something like this, you need to keep track of when your countdown was last triggered

 using UnityEngine;
 using UnityEngine.UI;
 
 public class Player_Health: MonoBehaviour
 {
     private float start_Health;
     private float current_health;
     public Image HealthBar;
     private float regen;
     private float regenerate = 10f;
     private float lastTime; //This will keep track of when you last regenerated
 
     // Use this for initialization
     void Start()
     {
         start_Health = 100;
         current_health = start_Health;
         lastTime = Time.time;
     }
     public void OnTriggerEnter(Collider col)
     {
         if (col.tag == "Enemy")
         {
             current_health -= 10;
             Debug.Log(current_health);
             HealthBar.fillAmount = current_health / start_Health;
             lastTime = Time.time;//this will reset your delay
         }
     }
     public void regenerating()
     {
         if ((Time.time > lastTime + regenerate) && (current_health < start_Health))//this will trigger when the time is greater than lastTime plus your delay
         {
             current_health += 10;
             Debug.Log(current_health);
             HealthBar.fillAmount = current_health / start_Health;
             lastTime = Time.time;//this will reset your delay
         }
     }
 
     // Update is called once per frame
     void Update()
     {
         regenerating();
     }
 }
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 mvirga · Sep 12, 2017 at 05:11 PM 0
Share

Thank you so much! It works I will accept this as completed. I kept on looking through the forums but nothing seemed to work with my current script. Hope you have a great day and I will learn from what you have shown me!

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

68 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

Related Questions

Health regen script wont work properly 2 Answers

Turn off function 2 Answers

How do i set health to regenerate over a specified range of time? 1 Answer

Regenerate health over time 2 Answers

Sidescroller health bar collision script with regen? 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