版本: Unity 6 (6000.0)
语言英语
  • C#

Vector4.Vector3

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们不能接受所有提交内容,但我们会阅读用户提出的每项更改建议,并在适当情况下进行更新。

关闭

提交失败

由于某种原因,您的建议更改无法提交。请<a>稍后重试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

描述

将 Vector4 转换为 Vector3

Vector4Vector3 的隐式转换。将 Vector4.w 舍弃。

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // Create and display a Vector4. Vector4 vector4;

vector4 = new Vector4(1.0f, 2.0f, 3.0f, 4.0f); Debug.Log("Vector4: " + vector4);

// Convert the Vector4 into a Vector3. Vector3 vector3; vector3 = vector4;

// The 4.0f is not copied into the Vector3. // Show (1.0f, 2.0f, 3.0f). Debug.Log("Vector3: " + vector3); } }