动态更改文本

时间:2017-03-04 19:08:49

标签: text unity5 unityscript unity2d

我有一个名为xoxo的文字组件,我无法将其改为显示" Ryan。"

这是我尝试过的:

Linked the text component to the variable user like this.

我的JS脚本:

txtUsername

1 个答案:

答案 0 :(得分:0)

您不需要使用GetComponent(UI.Text),因为您已将该游戏对象附加到检查器中,请尝试以下操作:

var username = "Ryan";
var user : UI.Text;


// set username text
function SetUsernameText() {
user.text = username;
}