更改Unity 4.6 UI按钮的文本

时间:2014-12-16 17:44:55

标签: button text unity3d

我一直在努力,但没有成功。如何使用C#脚本更改Unity 4.6按钮的文本?任何建议都表示赞赏。

1 个答案:

答案 0 :(得分:12)

创建一个脚本并将其添加到您的UIButton 你应该添加引用Unity.UI

using UnityEngine.UI;

然后声明一个变量

Text yourButtonText;

关于函数Start put this

void Start()
{
    yourButtonText = transform.FindChild("Text").GetComponent<Text>();
}

然后当您想要更改文字时添加此

yourButtonText.text = "i am a button!";

如果您需要应用更多修改,请访问http://docs.unity3d.com/ScriptReference/UI.Text.html

[版本标签]

添加此参考

using System.Collections.Generic;

public Text[] yourButtonTextArrays = new Text[15];

void Start()
{
    for (int i = 0; i < 15; i++ )
    {
        yourButtonTextArrays[i] = GameObject.FindGameObjectWithTag("Button" + i+1.ToString()).transform.FindChild("Text").GetComponent<Text>();
    }
}

然后当您想要更改文字时添加此

yourButtonTextArrays[yourButtonNumber].text = "i am a button from the array of buttons";