文本字段光标闪烁的速度。
这是每秒闪烁的次数。如果设置为 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); } }