implicit operator Vector3
Converts a float3 to a Vector3.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Operator
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
implicit operator Vector3(Vector)
public static implicit operator Vector3(float3 v)
Parameters
The float3 to be converted to a Vector3.
Returns
Type | Description |
|---|---|
| Vector3 | The converted Vector3 result. |
Remarks
Examples
// 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()); }}
implicit operator float3(float)
public static implicit operator float3(Vector3 v)
Parameters
The Vector3 to be converted to a float3.
Returns
Type | Description |
|---|---|
| float3 | The converted float3 result. |