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

설명

Multiplies two vectors component-wise.

Every component in the result is a component of a multiplied by the same component of 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);

설명

Multiplies every component of this vector by the same component of scale.