版本: Unity 6 (6000.0)
语言英语
  • C#

Object.ToString

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们会阅读用户提出的每一个建议,并在适用时进行更新。

关闭

提交失败

由于某种原因,您的建议修改无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

切换到手册

声明

public string ToString();

返回值

string ToString 返回的名称。

描述

返回对象的名称。

//This script changes Text to the name of the GameObject with the script attached
//Attach this script to a GameObject
//Attach a Text GameObject in the Inspector (Create>UI>Text)

using UnityEngine; using UnityEngine.UI;

public class Example : MonoBehaviour { public Text m_Text;

private void Start() { //Check that the Text is attached in the Inspector if (m_Text != null) //Change the Text to show the GameObject's name m_Text.text = "GameObject Name : " + gameObject.ToString(); } }