Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Vector3.Scale

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

Description

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(Vector3.Scale(new Vector3(1, 2, 3), new Vector3(2, 3, 4))); } }

public void Scale(Vector3 scale);

Description

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

Did you find this page useful? Please give it a rating: