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

Vector3.Vector3

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 float3 to be converted to a Vector3.

Returns

Vector3 The converted Vector3 result.

Description

Converts a float3 to a Vector3.

An implicit conversion operator that converts an input float3 value to a Vector3.

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

public class ExampleFloat3ToVector3 : MonoBehaviour { void Start() { float3 a = new float3(4f, 5f, 6f); Debug.Log("Input float3 is: " + a.ToString());

// Implicit conversion from Unity.Mathematics.float3 to UnityEngine.Vector3 Vector3 result = a; Debug.Log("Result Vector3 is: " + result.ToString()); } }