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 /
  • Help Room /
avatar image
0
Question by chesterhilly · Aug 12, 2016 at 12:50 PM · c#integerbattery

Can't change int Value (C#)

This may be me being stupid, but I'm trying to make the flashlight battery increase to make a hundred (when you pick up a batter pack) but it stays on the battery it was already on

(flBattery is the battery count)

 using UnityEngine;
 using System.Collections;
 using UnityEngine.UI;
 
 public class Battery : MonoBehaviour {
 
     public float flBattery = 100;
     public Text batteryTxt;
     public Light flashlight;
     public Image bHigh;
     public Image bMed;
     public Image bLow;
     public Image bNone;
     public float batteryDrainSpeed = 0.15f;
     public GameObject batteryPickup;
     public Text pickUpText;
     public Light lightSrc;
     private int flashInt;
 
     // Use this for initialization
     void Start () {
         pickUpText.enabled = false; 
         StartCoroutine ("BatteryLoss");
         bMed.GetComponent<Image> ().enabled = false;
         bLow.GetComponent<Image> ().enabled = false;
         bNone.GetComponent<Image> ().enabled = false;
     }
 
     IEnumerator BatteryLoss() {
         while (flBattery > 0) {
             yield return new WaitForSeconds (batteryDrainSpeed);
             flBattery--;
             batteryTxt.text = (flBattery + "%");
             Debug.Log (flBattery);
         }
     }
 
     void OnTriggerEnter (Collider other) {
         flashlight.intensity = 3.0f;
         flBattery = 100;
         pickUpText.GetComponent<Text> ().enabled = true;
         StartCoroutine (pickUpFunc());
     }
 
     IEnumerator pickUpFunc() {
         yield return new WaitForSeconds (2);
         GameObject.Destroy (batteryPickup);
         pickUpText.GetComponent<Text> ().enabled = 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

2 Replies

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

Answer by aditya · Aug 12, 2016 at 01:12 PM

There could be many reasons for this ... like

  1. One of your gameobjects, either your batter pack or the object that is trying to pick up this pack, should have rigidbody on it

  2. the collider of the gameobject this script is attached on is not a trigger

  3. script is on a wrong gameobject

  4. if flBattery is a floating point number then where is the f like 100f or 100.0f

    Plus, if your OnTriggerEnter function is not in need of the collider info then why are you giving it as a parameter, you can remove it and save some computation

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

Answer by NerdClown · Aug 12, 2016 at 01:13 PM

This isn't just a matter of the script being a MonoBehaviour is it?

When you've got it on a GameObject in the scene and have typed in some different value in the inspector yourself (or have one from a previous version of the script), that value will overwrite the default value you set in the script.

Could be that, I remember it confused me a lot when I first started out with Unity.

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 chesterhilly · Aug 12, 2016 at 01:18 PM 1
Share

I do understand but i know its not that.

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

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

Related Questions

I can't figure out why my score doesn't save/increase 0 Answers

Unity Setting Integer to 0 continuously? 0 Answers

Changing GUI Text to int and applying operands 1 Answer

Add a Max int value? 2 Answers

(26,47): error CS1525: Unexpected symbol `)' 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