Version: 5.4
public static Vector2 Scale (Vector2 a, Vector2 b);

説明

2 つのベクトルの各成分を乗算します

a の各成分と b の同じ成分を乗算した結果を取得します。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(Vector2.Scale(new Vector2(1, 2), new Vector2(2, 3))); } }

public void Scale (Vector2 scale);

説明

このベクトルの各成分と scale の同じ成分を乗算します