Vector2.this [int index] 操作索引

var this[index : int] : float

Description描述

Access the x or y component using [0] or [1] respectively.

使用[0]或者[1]分别访问组件x或者y组件。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Vector2 p;
	public void Awake() {
		p[1] = 5;
	}
}
var p : Vector2;
p[1] = 5; 
// the same as p.y = 5
// 等同于p.y = 5
最后修改:2011年1月4日 Tuesday 21:08

本脚本参考基于Unity 3.4.1f5

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