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

Vector2.Vector2

建议修改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读了用户提出的每个建议的更改,并在适用的情况下进行更新。

关闭

提交失败

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

关闭

取消

描述

Vector3 转换为 Vector2

Vector3 可以隐式转换为 Vector2。(z 轴会被丢弃)。

using UnityEngine;

public class ExampleScript : MonoBehaviour { void Start() { Vector2 v2 = new Vector2(1, 2); Debug.Log("Vector2 is: " + v2);

// convert v2 to v3 Vector3 v3 = v2; Debug.Log("Vector3 is: " + v3);

// convert v3 to new Vector3 Debug.Log("Set v3 to (3, 4, 5)"); v3 = new Vector3(3, 4, 5);

// convert v3 to v2 v2 = v3; Debug.Log("Vector2 is: " + v2); } }