Vector3.this [int index] 操作索引

var this[index : int] : float

Description描述

Access the x, y, z components using [0], [1], [2] respectively.

使用[0], [1], [2]分别访问组件x, y, z组件。简单来说就是用索引号代替x, y, z组件。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Vector3 p;
	public void Awake() {
		p[1] = 5;
	}
}
var p : Vector3;
//等同于p.y = 5
p[1] = 5; 
最后修改:2010年12月19日 Sunday 20:27

本脚本参考基于Unity 3.4.1f5

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