unity 获取text长度
时间: 2023-09-06 09:13:51 浏览: 217
Unity,Text文本滚动
如果你使用的是Unity中的Text组件,可以通过以下代码获取文本的长度:
```C#
Text textComponent = GetComponent<Text>();
int textLength = textComponent.text.Length;
```
如果你是想获取文本的像素长度,可以使用Text组件的preferredWidth属性:
```C#
Text textComponent = GetComponent<Text>();
float textPixelLength = textComponent.preferredWidth;
```
阅读全文