Versions with this page:
Versions without this page:
将两个向量的分量相乘。
结果中的每个分量都是 a 的一个分量乘以 b 的相同分量。
a
b
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(Vector2.Scale(new Vector2(1, 2), new Vector2(2, 3))); } }
将该向量的每个分量乘以 scale 的相同分量。
scale