Version: 2018.2
public float cursorFlashSpeed ;

説明

テキストフィールド内のカーソルの点滅速度を設定します

これは、点滅回数/秒数です。0に設定した場合、フラッシュは無効になります。-1に設定した場合、フラッシュ速度は、エンドユーザーのシステムのデフォルト設定に準じます。

using UnityEngine;

public class Example : MonoBehaviour { string str = "This is a string with \n two lines of text";

void OnGUI() { GUI.skin.settings.cursorFlashSpeed = 3; str = GUILayout.TextArea(str); } }