Hi all,
- How can i access a GUIText which i have set .enabled = false ?
- I´m asking myself what´s the best way to hide a GUIText in the Start() function and make it visible later?
I startet like this:
var iP_guiTexts = iP_instance.GetComponentsInChildren(GUIText);
for (var text in iP_guiTexts) {
text.enabled = false;
}
But then i want to change the textcontent ( .text property of every single GUIText) before making it visible again.