|
I do not know how to wrap this codes for the GUIText could any one please show me how? This code make my text typing from left to right but I need it wrapped so I could write more words for my game so please show me how? This code original from wiki. ///////////////////////////////////////////////////////////////////////////////// var letterPause = 0.2; var sound : AudioClip; private var word; function Start() { word = guiText.text; guiText.text = "" ; TypeText (); } function TypeText () { for (var letter in word.ToCharArray()) {
}
(comments are locked)
|
|
Word Wrap is a property of GUI Style, read up on how to implement GUI Styles here http://unity3d.com/support/documentation/Components/class-GUIStyle.html
(comments are locked)
|
|
Thanks for this notice.
(comments are locked)
|
