将两个向量的分量相乘。
结果中的每个分量都是 a
的一个分量乘以 b
的相同分量。
// Calculate the two vectors generating a result. // This will compute Vector3(2, 6, 12)
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Example() { print(Vector3.Scale(new Vector3(1, 2, 3), new Vector3(2, 3, 4))); } }
将该向量的每个分量乘以 scale
的相同分量。