Version: 2020.1
言語: 日本語
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); } }