Version: Unity 6.5 Alpha (6000.5)
LanguageEnglish
  • C#

Vector4.Vector4

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Parameters

Parameter Description
v The float4 to be converted to a Vector4.

Returns

Vector4 The converted Vector4 result.

Description

Converts a float4 to a Vector4.

An implicit conversion operator that converts an input float4 value to a Vector4.

// Attach this script to a GameObject.
using UnityEngine;
using Unity.Mathematics;

public class ExampleFloat4Conversion : MonoBehaviour { void Start() { float4 a = new float4(1f, 2f, 3f, 4f); Debug.Log("Input float4 is: " + a.ToString());

// Implicitly convert Unity.Mathematics.float4 to UnityEngine.Vector4 Vector4 result = a; Debug.Log("Result Vector4 is: " + result.ToString()); } }