Skip to main content

Making Multiple Instances of Windows With Same Window Method

So when developing a small little web-player, I ran into the problem of trying to render multiple instances of the same window function.

My plan was for my user interface component to iterate through all the thought components and for each thought, render its contents in a new window. The windows need to be draggable also.

My first attempt of this implementation failed.

  Rect thoughtRect = new Rect(20, 20, 200, 100);
  void OnGUI(){
    for (int i = 0; i < allthoughts.Length; i++){
      thoughtRect = GUI.Window(0+i, thoughtRect, DoThoughtWindow, ""+allthoughts[i].GetContent());
    }
  }
  
  
    void DoThoughtWindow(int windowID) {
        
        GUI.DragWindow(new Rect(0, 0, 10000, 10000));
    }

For those who don't see the problem with this, I'll explain.

All three windows are using the same Rect thoughtRect so all the windows are drawn on top of eachother. You might think this won't pose a problem due to the windows being draggable, you can just move one away from the other, but this is Unity's GUI class, it's not fun. The GUI.DragWindow adjusts the thoughtRect, which in turn moves all 3 windows at once, still keeping them on top of each other.

So on my second attempt of implementing my feature, I got it thankfully. I probably coded my program differently from what others would, but I hope at-least it might give you an idea to fix a problem now or in the future.

In my thought class, I made a variable "Rect positionOnScreen", which keeps up of that thoughts position. I've also added two new methods in the thought class.

One, GetPosition(), returns a Rect, the positionOnScreen;

The other SetPosition(), is called to set the new Rect in the Though class's positionOnScreen.

 When it gets to a certain thought in the for statement, it sets that certain thought to the currentThought. The point in this is so the DoThoughtWindow method has something to reference when its rendering it's contents. ***Notice currentThought = allthoughts[i];  is called BEFORE the DoThoughtWindow() is***
     Thought currentThought;  
     void OnGUI(){  
         for (int i = 0; i < allthoughts.Length; i++){  
             currentThought = allthoughts[i];  
             currentThought.SetPosition(GUI.Window(0+i, currentThought.GetPosition(), DoThoughtWindow, ""+currentThought.GetTitle()));  
         }  
     }  
       
       
   void DoThoughtWindow(int windowID) {  
     if (GUI.Button(new Rect(currentThought.GetPosition().width-120, currentThought.GetPosition().height-30, 100, 20), "Edit")){  
       Debug.Log ("We need to edit this");  
     }  
       
         GUI.Box(new Rect(10,25 ,currentThought.GetPosition().width - 20,currentThought.GetPosition().height-65),"");  
           
     GUI.DragWindow(new Rect(0, 0, 10000, 10000));  
   }  


My thought class so far in case you want to look at it yourself.

 using UnityEngine;  
 using System.Collections;  
 using System.Collections.Generic;  
   
 public class Thought : MonoBehaviour {  
       
     string thoughtTitle = "Thought";  
     public string thoughtContent = "Substance Goes Here";  
     List<GameObject> connectedThoughts = new List<GameObject>();  
     Rect positionOnScreen = new Rect(20, 20, 200, 200);  
       
       
     // Use this for initialization  
     void Start () {  
       
     }  
       
     // Update is called once per frame  
     void Update () {  
       
     }  
       
   public string GetContent(){  
         return thoughtContent;  
     }  
       
     public string GetTitle(){  
         return thoughtTitle;  
     }  
       
     public Rect GetPosition(){  
         return positionOnScreen;      
     }  
       
     public void SetPosition(Rect newPos){  
         positionOnScreen = newPos;  
     }  
       
   
 }  
   

And a look at it being rendered.



Comments

  1. Hello, I'm with this problem, but I can't set your code in my app.. First of all, who is this allthoughts? I imagine that is an array of Toughts, but where did you declare it? And how? I'm trying to set toughts objects in the allthoughts, but I'm getting a null exception when accessing them. Please, you're the only one who tells about it in whole internet and I'm desperate!

    ReplyDelete

Post a Comment

Popular posts from this blog

How To Make a Hellish Looking Sky Box

I came across this problem while constructing my scene of Hell in a little project I've been working on, and could not find a reasonable sky box on the web for what I want. Maybe I was not looking hard enough, but I ended up making nice substitute. If you think the sky box looks familiar, then your right. The Sky box I'm using is already packaged with Unity3D! To import the sky boxes Unity has made for you,  simply go to Assets>Import Package>Skyboxes.  The sky boxes will appear in your projects tab under a folder named "Standard Assets". To make this sky box, first you must find the folder containing all the sky box materials and open it up. In it will be a list of sky boxes for your disposal. To get this skybox, I decided to tweak the "StarryNight Skybox" (But the "MoonShine Skybox" looks pretty cool also!).  Select the sky box and view it under the inspector tab. Underneath the properties there will be a tint color variable allowin

Making A Laser Pointer

Want a frieking lazer pointer? BOOM. Attach a Line Renderer component to the object you have the script below attached to. (Component> Miscellaneous>Line Renderer) Code: function Update () { var lineRenderer : LineRenderer = GetComponent(LineRenderer); lineRenderer.useWorldSpace = false; lineRenderer.SetVertexCount(2); var hit : RaycastHit; Physics.Raycast(transform.position,transform.forward,hit); if(hit.collider){ lineRenderer.SetPosition(1,Vector3(0,0,hit.distance)); } else{ lineRenderer.SetPosition(1,Vector3(0,0,5000)); } } @script RequireComponent(LineRenderer) Thank  3dDude for the script. Original Source here .

How To Make A Gun Shot Sound (SFX On Unity 3D)

When it comes to audio in Unity, there are four components: Audio Clip , Audio Source , Audio Listener , and Audio Re-verb Zone . Audio Clips are the actual audio file imported into your game. Unity supports file formats: .aif, .wav, .mp3, and .ogg. When imported, you can compress them greatly, with the price of loosing some quality. You can do this by first selecting the audio clip, view it in the inspector. Under the Audio Importer component, you can switch the audio format from Native to the audio clip, to a compressed format applied by Unity. You can change how compressed the file is by dragging the bar at the bottom, then hitting apply. You can get plenty of free good SFX from a site called  freesound.org . All you have to do is create an account for free , and download all the sounds you want. I found a nice gun shot sound here . Simply download and load into your Project. Audio Source actually plays the audio clip in your scene. They are an component, so it mu