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 shay4545 · Aug 21, 2014 at 06:53 PM · c#guipopuplives

GUI trouble

I have a GUI that pops up when I die that has a play again button. I have it so that if I have more than 0 lives, then it lets me play again. but if I have 0 lives and I press it, it should pop up a box saying "You are out of Lives" or something like that. But if I press it with 0 lives, it does nothing. Here is the snippet of code:

 if(GUI.Button(new Rect(GameoverRect.x + GameoverRect.width - (Screen.width * .25f), GameoverRect.y + GameoverRect.height - (Screen.height * .25f), Screen.width * .25f, Screen.height * .2f), "", GUI.skin.GetStyle("PlayAgain")))
         {
             if(Lives > 0)
             {
                 //AudioSource.PlayClipAtPoint(ButtonPressed, transform.position);
                 Application.LoadLevel(GameplayLevel);
             }
             else
             {
                 GUI.Box(new Rect(Screen.width/2 - (Screen.width * .3f/2), Screen.height/2 - (Screen.height * .3f/2), Screen.width * .3f, Screen.height *  .3f), "You need more Lives!", GUI.skin.GetStyle("OutOfLives"));
             }




I have tried replacing "else" with "if(Lives

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

Answer by zharik86 · Aug 21, 2014 at 07:00 PM

Your code work correct, but you see box only one frame. See example below:

  private float timingBox = 0.0f; //variable for time of see our box

  void Update() {
   if (timingBox > 0) {
    timingBox = timingBox - Time.delataTime;
   }
  }

  void OnGUI() {
   //First you change GUI.skin and etc operation, than
   if(GUI.Button(new Rect(GameoverRect.x + GameoverRect.width - (Screen.width * .25f), GameoverRect.y + GameoverRect.height - (Screen.height * .25f), Screen.width * .25f, Screen.height * .2f), "", GUI.skin.GetStyle("PlayAgain"))) {
    if(Lives > 0) {
     //AudioSource.PlayClipAtPoint(ButtonPressed, transform.position);
     Application.LoadLevel(GameplayLevel);
    } else {
     timingBox = 2.0f;
    }
   }
   if (timingBox > 0) { //show box
    GUI.Box(new Rect(Screen.width/2 - (Screen.width * .3f/2), Screen.height/2 - (Screen.height * .3f/2), Screen.width * .3f, Screen.height *  .3f), "You need more Lives!", GUI.skin.GetStyle("OutOfLives"));
   }
  }

I hope that it will help you.

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 shay4545 · Aug 21, 2014 at 07:39 PM 0
Share

Thanks a lot, that fixed it!

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

x0,y0 doesn't always point to the bottom left corner 1 Answer

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

How to make a GUI Button shrink when pressed 4 Answers

C# converting Input.Mouseposition.y to to "top" argument of GUI.Box 1 Answer

Trouble with lives 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