Version: Unity 6.6 Alpha (6000.6)
LanguageEnglish
  • C#

Rigidbody2D.linearVelocityY

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public float linearVelocityY;

Description

The Y component of the linear velocity of the Rigidbody2D in world-units per second.

The linear velocity is specified as a Vector2 with components in the X and Y directions (there is no Z direction in 2D physics).

This property lets you read or write the Y component of the Rigidbody2D.linearVelocity separately without affecting the X component of the Rigidbody2D.linearVelocity. This can be convenient when dealing with only X or Y directions in isolation.

Additional resources: Rigidbody2D.linearVelocity and Rigidbody2D.linearVelocityX.

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.linearVelocityY > MaximumVerticalSpeed) { rb.linearVelocityY = MaximumVerticalSpeed; } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961