我想通过c#脚本动态地在Unity 5.6的按钮内添加一个图标和一个文本,如下所示:
我的剧本:
GameObject button = Instantiate (BtnTemplate)as GameObject;
button.GetComponent<ButtonListButton().SetText("Text");
// inButtonListButton脚本:
public void SetText(string strText){
tmpStr = strText;
BtnTxt.text = strText;
但我不知道我怎么能通过脚本来做到这一点。我动态地实例化按钮,我想动态地向按钮添加图标和文本。
感谢。 抱歉我的英文不好:)