Version: 5.3 (switch to 5.4b)
ЯзыкEnglish
  • C#
  • JS

Язык программирования

Выберите подходящий для вас язык программирования. Все примеры кода будут представлены на выбранном языке.

Vector3.Scale

Руководство
public static Vector3 Scale(Vector3 a, Vector3 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(Vector3.Scale(new Vector3(1, 2, 3), new Vector3(2, 3, 4))); } }

public void Scale(Vector3 scale);

Параметры

Описание

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