GUISettings.cursorColor

public Color cursorColor;

Description

The color of the cursor in text fields.

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); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答