Vector4.Scale
static function Scale(a: Vector4, b: Vector4): Vector4;
static Vector4 Scale(Vector4 a, Vector4 b);
static def Scale(a as Vector4, b as Vector4) as Vector4
Description

Multiplies two vectors component-wise.

Every component in the result is a component of a multiplied by the same component of b.
	// prints (2.0,6.0,12.0,20.0)
	print (Vector4.Scale (Vector4(1,2,3,4), Vector4(2,3,4,5)));
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void Example() {
        print(Vector4.Scale(new Vector4(1, 2, 3, 4), new Vector4(2, 3, 4, 5)));
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def Example() as void:
		print(Vector4.Scale(Vector4(1, 2, 3, 4), Vector4(2, 3, 4, 5)))

Scale(scale: Vector4): void;
void Scale(Vector4 scale);
def Scale(scale as Vector4) as void
Description

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