在按钮Unity内的文本旁边添加一个图标

时间:2017-07-28 08:20:55

标签: c# unity3d

我想通过c#脚本动态地在Unity 5.6的按钮内添加一个图标和一个文本,如下所示:

enter image description here

我的剧本:

GameObject button = Instantiate (BtnTemplate)as GameObject;
button.GetComponent<ButtonListButton().SetText("Text");

// inButtonListButton脚本:

 public void SetText(string strText){
        tmpStr = strText;
        BtnTxt.text = strText;

但我不知道我怎么能通过脚本来做到这一点。我动态地实例化按钮,我想动态地向按钮添加图标和文本。

感谢。 抱歉我的英文不好:)

0 个答案:

没有答案