Unity 6.3
0 онлайн 83 гостей 3 в системе
Вход

GUISettings.cursorColor

Declaration

public Color cursorColor;

Описание

Цвет курсора в текстовых полях.

using UnityEngine;

public class Example : MonoBehaviour { // Set the cursor color to Cyan. string str = "This is a string with \n two lines of text";

void OnGUI() { GUI.skin.settings.cursorColor = Color.cyan; str = GUILayout.TextArea(str); } }