public static Vector2 Scale (Vector2 a, Vector2 b);

Description

Покомпонентное умножение двух vector'oв

Каждый компонент в результате является компонентом а умноженным на 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);

Description

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