Object.operator != 不等于

static operator != (x : Object, y : Object) : bool

Description描述

Compares if two objects refer to a different object

比较如果两个物体不相同。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Transform target;
	void Update() {
		if (target != transform)
			print("Another object");

	}
}
var target : Transform;
function Update () {
	// 如果target 不同于 transform
	if (target != transform) {
		print("Another object");
	}
}
最后修改:2010年12月9日 Thursday 0:20

本脚本参考基于Unity 3.4.1f5

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