Object.name 名字

var name : string

Description描述

The name of the object.

物体的名字

Components share the same name with the game object and all attached components.

组件与游戏物体和所有附加的组件共享相同的名字。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		name = "Hello";
	}
}
// Changes the name of the game object to Hello
//改变游戏物体的名字为hello
name = "Hello";
最后修改:2010年12月8日 Wednesday 17:52

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。