Version: 2022.3
public static Vector3 up ;

描述

用于编写 Vector3(0, 1, 0) 的简便方法。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { transform.position += Vector3.up * Time.deltaTime; } }