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 BlankSlates · Jul 07, 2018 at 02:09 AM · guidisplaybegginerbarthrust

How to use this script for a depleting fuel bar as you thrust with a rocket

  using UnityEngine;
  using System.Collections;
 
  public class Progress : MonoBehaviour {
      public float barDisplay; //current progress
      public Vector2 pos = new Vector2(20,40);
      public Vector2 size = new Vector2(60,20);
      public Texture2D emptyTex;
      public Texture2D fullTex;
  
      void OnGUI() {
      //draw the background:
      GUI.BeginGroup(new Rect(pos.x, pos.y, size.x, size.y));
          GUI.Box(new Rect(0,0, size.x, size.y), emptyTex);
      
          //draw the filled-in part:
          GUI.BeginGroup(new Rect(0,0, size.x * barDisplay, size.y));
              GUI.Box(new Rect(0,0, size.x, size.y), fullTex);
          GUI.EndGroup();
      GUI.EndGroup();
  }
  
  void Update() {
          //for this example, the bar display is linked to the current time,
          //however you would set this value based on your desired display
          //eg, the loading progress, the player's health, or whatever.
          barDisplay = Time.time*0.05f;
 //       barDisplay = MyControlScript.staticHealth;
     }
 }

So this code is from another question response on this site itself. Im a newb, so i could use some help. If i just use it as is, attach it to my rocket gameobject and set the float fuel = barDisplay it only depletes the bar after the fuel bar hits 0, which coincidentally is the point in my code that i disable the thrusting movement function and invoke my Death() after a few seconds just in case the player is on a friendly platform like the launcher in my game.

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 Papouc · Jul 07, 2018 at 11:01 AM

I think that you need to edit your script a bit. So 1) replace your texture 2d with images or just make another variables 2) Then just make your filled image of type "Filled" 3) yourImage.fillAmount = some float decreasing its value over time 4) make a float :

Ienumerator decrese() { Yield return new waitForSeconds (0.5f) YourFloat - = some decrease value } 5) Start corutine in Update method : StartCorutine(decrese() )

Hope it helps

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 BlankSlates · Jul 07, 2018 at 01:54 PM 0
Share

Thanks for the help i think I'll be able to figure it out 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

159 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

Related Questions

Displaying varying text 1 Answer

GUI Overlay Display 0 Answers

Background shines through on Android 0 Answers

Why does the font selected for my GUI Skin not display correctly? 1 Answer

Make accented letters show in text field on Android? 2 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