Version: 2023.1
public float velocityY ;

描述

The Y component of the linear velocity of the Rigidbody in units per second.

This property allows you to read or write only the Y component of the linear velocity of the Rigidbody without affecting the X component if the linear velocity.

See Also: Rigidbody2D.velocity and Rigidbody2D.velocityX.

using UnityEngine;

// Ensure that the maximum vertical speed moving up isn't larger than the configurable value. public class Example : MonoBehaviour { public float MaximumVerticalSpeed = 2f;

private Rigidbody2D rb;

void Start() { rb = GetComponent<Rigidbody2D>(); }

void FixedUpdate() { // Clamp the vertical speed. if (rb.velocityY > MaximumVerticalSpeed) { rb.velocityY = MaximumVerticalSpeed; } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961