URL: https://docs.unity3d.com/ScriptReference/../Manual/../ScriptReference/Vector3-operator_float3.html
taLayer-initialized', user: { user_unity_id: undefined, user_logged_in: 'no' }, environment: { environment_locale: 'en-us', environment_currency: undefined }});| Parameter | Description |
|---|---|
| v | The float3 to be converted to a Vector3. |
Vector3 The converted Vector3 result.
// 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()); } }