版本: Unity 6 (6000.0)
语言英语
  • C#

GUISettings.cursorFlashSpeed

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们不能接受所有提交,但我们确实会阅读用户提出的每个建议,并在必要时进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请 <a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

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); } }