Hello, I’ve been trying to work on this for hours now but I can’t seem to get it. I’m trying to make a conversation with let’s say two or three GUILayout.Label boxes and I want to make it so that when the player clicks the mouse button it goes to the next box, and etc. I kind of have an idea that you use
void Update()
{
if(Input.GetMouseDown(0))
{
//something to skip to next box
}
}
but I’m not sure what I put in to skip ahead. I can not figure out how to do this and if someone could poit me in the right direction that would be very much appreciated thank you. =P