Vector4.operator + 运算符 加法

static operator + (a : Vector4, b : Vector4) : Vector4

Description描述

Adds two vectors.

两个向量相加。

Adds corresponding components together.

每个相对应的组件相加在一起。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(new Vector4(1, 2, 3, 4) + new Vector4(4, 5, 6, 7));
	}
}
// prints (5.0,7.0,9.0,11.0)
print (Vector4(1,2,3,4) + Vector4(4,5,6,7));
最后修改:2011年1月9日 Sunday 16:45

本脚本参考基于Unity 3.4.1f5

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