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
0
Question by Taylord303 · Nov 05, 2012 at 08:53 PM · timerinvokeinvokerepeatinghealth

Subtract one from health every five seconds.

I have a script that invokes a function every five seconds where if the player is hungry, one point is subtracted from the player's health until it reaches zero, at which point, the player dies. However, I've been having a problem and can't seem to figure it out. Once the function is invoked, it doesn't happen every five seconds, instead it drains the player health to zero in about 1.5 seconds. I'll post the code below. Any help would be greatly appreciated.

 using UnityEngine;
 using System.Collections;
 
 public class playerHunger : MonoBehaviour {
 
 public int Hunger = 3;
 public GUISkin customSkin;
 public Texture HungerFull;
 public Texture HungerHalf;
 public Texture HungerOne;
 public Game2_Player Deadbool;
 public int HealthDeduction = 1;
     
     // Use this for initialization
     void Start () {
         InvokeRepeating("HungerDecay", 480, 480.0f);
     }
     
     // Update is called once per frame
     void Update () {
         if(Hunger<=0){
             Hunger=0;
         }
         if(Hunger==0){
             Invoke("HungerDamage", 1);
         }
         if(Game2_Player.hp==0){
             Game2_Player.dead = (true);
             Time.timeScale = 0.0f;
         }
     }
 
 
     void HungerDecay () {
         Hunger--;
 }
     void OnGUI(){
         GUI.skin=customSkin;
         GUI.Label(new Rect(10,70,100,100), "Hunger:");
         if(Hunger==3){
             GUI.DrawTexture(new Rect(10,70,100,100), HungerFull, ScaleMode.ScaleToFit, true, 0);
             }
         if(Hunger==2){
             GUI.DrawTexture(new Rect(10,70,100,100), HungerHalf, ScaleMode.ScaleToFit, true, 0);
             }
         if(Hunger==1){
             GUI.DrawTexture(new Rect(10,70,100,100), HungerOne, ScaleMode.ScaleToFit, true, 0);
             }
         if(Hunger==0){
             GUI.Label(new Rect(10,70,100,100), "Feed Me!");
         }
     }
     void HungerDamage(){
         if(Hunger==0){
         Game2_Player.hp--;
         }
     }
 }
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
2

Answer by Paulo-Henrique025 · Nov 05, 2012 at 09:06 PM

Try this:

 void Start()
 {
        InvokeRepeating("DamagePlayer", 0, 5);
 }
         
 void DamagePlayer()
 {
        //TODO Dmg the player
 }
 
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

11 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

Related Questions

Loop a function, once per second, X number of times 1 Answer

Invoke() and InvokeRepeating() not working on webplayer? 1 Answer

InvokeRepeating doesn't work 2 Answers

InvokeRepeating doesn't work at 0.00002 seconds 2 Answers

Reduce health for everyone ?? 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