Object.GetInstanceID 获取实例ID

function GetInstanceID () : int

Description描述

Returns the instance id of the object.

返回物体的实例id。

The instance id of an object is always guaranteed to be unique.

物体的实例id始终保证是独一无二的。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(GetInstanceID());
	}
}
print(GetInstanceID());
最后修改:2010年12月8日 Wednesday 18:11

本脚本参考基于Unity 3.4.1f5

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