Transform.position 位置

var position : Vector3

Description描述

The position of the transform in world space.

在世界空间坐标transform的位置。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		transform.position = new Vector3(0, 0, 0);
		print(transform.position.x);
	}
}
// Move the object to (0, 0, 0)
//移动物体到(0, 0, 0)
transform.position = Vector3(0, 0, 0);

// Print the x component of the position to the Console
//打印位置的x组件
print(transform.position.x);
最后修改:2010年12月18日 Saturday 21:36

本脚本参考基于Unity 3.4.1f5

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