从法线定义的平面反射一个向量。
inNormal
向量定义一个平面
(平面的法线是垂直于其表面的向量)。inDirection
向量被视为进入该平面的定向箭头。
返回值是与 inDirection
大小相等、方向为其反射方向的向量。
Reflection of a vector off a plane.
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
public Transform originalObject;
public Transform reflectedObject;
void Update() {
reflectedObject.position = Vector3.Reflect(originalObject.position, Vector3.right);
}
}