make line Indicator invisible

I have a text area where you enter your initials when you get a high score. I set the focus on the text area, once all the character spaces are used i would like the line indicator(blinking line) to be invisible(or some other color). Is that possible?

1 Answer

1

I believe you could get to change the cursor color or change its flash speed through GUISkin.settings. You may have to create a GUISkin and determine the variables yourselves, the documentation is limited.

Awesome! I didnt need to create a GUISkin even. This is what i used GUI.skin.settings.cursorColor=Color.black; Easy as that. Thanks for pointing me to the reference. I havent used any gui skins before, and didnt even think to look there. Thanks again.