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 tayyab43 · Feb 25, 2015 at 04:27 PM · guiwindows

Window isn't opening

I want a window to appear when you press a button however my code isn't working. where i debug log "The Window Should be made", it doesn't come up however the "I just pressed button" does. Here is my code:

 using UnityEngine;
 using System.Collections;
 
 public class ButtonsAtTop : MonoBehaviour {
 
     public Texture LogOutTexture;
     public Texture Shop;
     public Texture Inventory;
     public Texture Friends;
     public Texture Chat;
     public Texture CharacterCustom;
     public Rect WindowSize = new Rect (700f,700f,1000f,1000f);
 
     void OnGUI()
     {
 
         if (GUI.Button (new Rect (Screen.width - 50, 0, 50, 50), LogOutTexture)) 
         {
             PhotonNetwork.Disconnect();
 
         }
         if (GUI.Button (new Rect (Screen.width - 100, 0, 50, 50), Shop)) 
         {
         GUI.Window(0, new Rect(0,0,250,250), ShopWindow, "Shop Window");
         Debug.Log("I just pressed button");
         }
         if(GUI.Button (new Rect (Screen.width - 150, 0, 50, 50),Inventory))
         {
             
         }
         if(GUI.Button (new Rect (Screen.width - 200, 0, 50, 50),Friends))
         {
             
         }
         if(GUI.Button (new Rect (Screen.width - 250, 0, 50, 50),Chat))
         {
             
         }
         if(GUI.Button (new Rect (Screen.width - 300, 0, 50, 50),CharacterCustom))
         {
             
         }
     }
 
     void ShopWindow(int id)
     {
         GUI.Button (new Rect(0,0,500,500),"Button In Window");
         Debug.Log ("The Window Should be made");
     }
 
     void OnDisconnectedFromPhoton()
     {
         Application.LoadLevel ("SciFi Level");
     }
 
 }
Comment
Add comment · Show 1
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 tayyab43 · Feb 25, 2015 at 04:36 PM 0
Share

i have no clue what is going on here.

1 Reply

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

Answer by maccabbe · Feb 25, 2015 at 04:46 PM

In your script, the window is only open when the Shop button is clicked and closes immediately. You need some way for the shop button to toggle the display of the window, for instance:

 using UnityEngine;
 using System.Collections;
 
 public class ButtonsAtTop : MonoBehaviour {
     bool displayWindow=false;
     public Texture Shop;
     void OnGUI() {
         if(GUI.Button(new Rect(Screen.width-100, 0, 50, 50), Shop)) {
             displayWindow=!displayWindow;
             Debug.Log("I just pressed button");
         }
         if(displayWindow) {
             GUI.Window(0, new Rect(0, 0, 500, 500), ShopWindow, "Show Window");
         }
     }
 
     void ShopWindow(int id) {
         if(GUI.Button(new Rect(0, 0, 250, 250), "Button In Window")) {
             Debug.Log("I just pressed the button in the window");
         }
     }
 }

Comment
Add comment · Show 5 · 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 tayyab43 · Feb 25, 2015 at 05:02 PM 0
Share

highly appreciated

avatar image tayyab43 · Feb 25, 2015 at 09:03 PM 0
Share

hmm, i try and make a drag window with it and its not dragging??? here is my code:

 using UnityEngine;
 using System.Collections;
 
 public class ButtonsAtTop : $$anonymous$$onoBehaviour {
 
     public Texture LogOutTexture;
     public Texture Shop;
     public Texture Inventory;
     public Texture Friends;
     public Texture Chat;
     public Texture CharacterCustom;
     public Rect WindowSize = new Rect (700f,700f,1000f,1000f);
     bool displayWindowForShop=false;
 
     void OnGUI()
     {
 
         if (GUI.Button (new Rect (Screen.width - 50, 0, 50, 50), LogOutTexture)) 
         {
             PhotonNetwork.Disconnect();
 
         }
         if (GUI.Button (new Rect (Screen.width - 100, 0, 50, 50), Shop)) 
         {
         displayWindowForShop=!displayWindowForShop;
         }
         if(GUI.Button (new Rect (Screen.width - 150, 0, 50, 50),Inventory))
         {
             
         }
         if(GUI.Button (new Rect (Screen.width - 200, 0, 50, 50),Friends))
         {
             
         }
         if(GUI.Button (new Rect (Screen.width - 250, 0, 50, 50),Chat))
         {
             
         }
         if(GUI.Button (new Rect (Screen.width - 300, 0, 50, 50),CharacterCustom))
         {
             
         }
         if (displayWindowForShop) 
         {
             GUI.Window(0, new Rect(Screen.width-750,(Screen.height/2)-250,500,500), ShopWindow, "Shop Window");
         }
     
     }
 
     void ShopWindow(int id)
     {
 
         GUI.DragWindow ();
     }
 
     void OnDisconnectedFromPhoton()
     {
         Application.LoadLevel ("SciFi Level");
     }
 
 }

avatar image tayyab43 · Feb 26, 2015 at 04:39 PM 0
Share

i don't think i made an error

avatar image tayyab43 · Feb 26, 2015 at 07:26 PM 0
Share

hmm

avatar image tayyab43 · Feb 26, 2015 at 07:30 PM 0
Share

does anyone see way

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

19 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

Related Questions

Why isn't the window draggable? 1 Answer

Windows Application 2 Answers

Don't show window close button 1 Answer

Create GUI elements outside of GUI.Window 1 Answer

Change in functionality in windows build 0 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