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 Terminik · May 13, 2013 at 02:30 AM · menuescape

The Escape Menu opens more than once

Hey people!:) I'm struggling with something at the moment, I'm doing an escape menu and for some reason it opens more than 1 of the menu each time i press escape. And when I try and press resume it takes like 3-5 clicks until it closes. here is the code:

     private var isPaused = false;
     private var isOpened = false;
     function Update () {
      
     Lock();
      
     if(Input.GetKeyDown("escape") && !isPaused)
      
     {
     cursorlock = false;
     isPaused = true;
     GetComponent(MouseLook).enabled = false;
     GameObject.Find("Player").GetComponent(MouseLook).enabled
 = false;
      
     }
      
     else if(Input.GetKeyDown("escape") && isPaused)
      
     {
     isPaused = false;
     GetComponent(MouseLook).enabled = true;
     GameObject.Find("Player").GetComponent(MouseLook).enabled
 = true;
      
     }
      
     }
      
     function Lock () {
      
     if (isPaused)
     {
     Screen.lockCursor = false;
     Screen.showCursor = true;
     }
     if(!isPaused)
     {
     Screen.lockCursor = true;
     Screen.showCursor = false;
     }
      
     }

           function OnGUI() {
     
         if ((isPaused) && (!isOpened)) {
         isOpened = true;
         GUI.Box (Rect (Screen.width * 0.5 - 85,Screen.height * 0.5 - 110,170,200), "Main Menu");        
         if (GUI.Button (Rect (Screen.width * 0.5 - 75,Screen.height
 * 0.5 - 75,150,40), "Resume Game")) {
             isPaused = false;
             isOpened = false;
         }
         
         if (GUI.Button (Rect (Screen.width * 0.5 - 75,Screen.height
 * 0.5 - 25,150,40), "Options")) {
             //Application.LoadLevel (1);
         }    
         
         if (GUI.Button (Rect (Screen.width * 0.5 - 75,Screen.height
 * 0.5 + 25,150,40), "Quit")) {
             Application.Quit();
         }        
         }
     }

I'm really stuck with this at the moment, and all help is greatly appreciated! Thank you so much.

Regards, Shane

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
Wiki

Answer by GhostNine001 · May 13, 2013 at 03:40 AM

so ur tying to make your menu close?.i don't know much of coding but some times when im making a gui to opening/closing when i want it to i just do the noob way. but theres other better ways to do it but im sure come one else will post the correct way for you but heres mine;

var LockCode : int = 0: function update() { if (Input.GetKeyDown("escape")&& LockCode == 0 ) { //Open Menu LockCode = 1; } if (Input.GetKeyDown("escape")&& LockCode == 1 ) { //Close Menu LockCode = 0; } }

its my only quick and Nooby way of doin it./ hope you find this helpful or find a good idea what u can do. :)

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

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

16 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

Related Questions

Hold the esc button for a pause menu 1 Answer

Deactivate UI windows in order when "Escape" button is pressed. 1 Answer

Unity 3D C# - Scripts ot true false not working 2 Answers

input question 1 Answer

Escape menu script problem 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