x


How to make this text box disappear after a set amount of time?

The code below draws a textbox on the screen that displays a message to the player. But i want the box to disappear after a set amount of time, instead of just sit on the screen throughout the whole game. What code would i have to have to do this?

Thanks!

function OnGUI()

{ GUI.Box( Rect(100, 200, 750, 50), "You have crashlanded on a strange planet and need to collect 300 crystals to repair your ship and get home. Happy hunting!");

}

more ▼

asked Nov 10 '11 at 10:30 PM

empire72 gravatar image

empire72
16 7 7 8

(comments are locked)
10|3000 characters needed characters left

1 answer: sort voted first

It can be done many ways, but you could make a "delay/timer" in your update event and on each frame, decrement this delay. Once it reaches zero, you change the boolean which the box uses to check if it should show or not.

You shouldn't place "logic" inside the OnGUI event as its often rendered more than once per frame. Thats why I added the Update() function here too.

Instead of the timer, you could also do an Invoke timer or other ways. But to remove the GUI element, just encapsulate it in an IF structure.

If you need multiple messages, you could consider a "state-machine" approach instead with switch(state)

But here is a quick solution to your question, I think. Let me know if it worked for you and if you are happy about it. Please mark my answer as the correct one.

var isIntroShown:bool = true; // boolean
var timeIntroShow:float = 5.0f;

function Update()
{

    if(isIntroShown) 
    {
       timeIntroShow-=Time.deltaTime;
       if (timeIntroShow<0.0f)
       {

           isIntroShown = false;
       }
    }
}

function OnGUI()
{
    if (isIntroShown)
    {
       GUI.Box( Rect(100, 200, 750, 50), "You have crashlanded on a strange planet and need to collect 300 crystals to repair your ship and get home. Happy hunting!");
    }

}
more ▼

answered Nov 10 '11 at 10:59 PM

BerggreenDK gravatar image

BerggreenDK
2.4k 54 62 75

(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

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

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x356
x252
x111
x29
x16

asked: Nov 10 '11 at 10:30 PM

Seen: 1325 times

Last Updated: Nov 10 '11 at 11:50 PM