Legacy Documentation: Version 5.4
LanguageEnglish
  • C#
  • JS

Script language

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

Vector4.Vector3

Parameters

Description

Converts a Vector4 to a Vector3.

Vector4s can be implicitly converted to Vector3 (w is discarded).

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { // Shader vectors are always Vector4s. // But the value here is converted to a Vector3. Vector3 value = Vector3.one; Renderer renderer = GetComponent<Renderer>(); renderer.material.SetVector("_SomeVariable", value); } }