我有一个名为xoxo
的文字组件,我无法将其改为显示" Ryan。"
这是我尝试过的:
Linked the text component to the variable user
like this.
我的JS脚本:
txtUsername
答案 0 :(得分:0)
您不需要使用GetComponent(UI.Text),因为您已将该游戏对象附加到检查器中,请尝试以下操作:
var username = "Ryan";
var user : UI.Text;
// set username text
function SetUsernameText() {
user.text = username;
}