Version: 2023.2
public float velocityX ;

描述

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

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

See Also: Rigidbody2D.velocity and Rigidbody2D.velocityY.

using UnityEngine;

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

private Rigidbody2D rb;

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

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