Version: 2023.1
LanguageEnglish
  • C#

Rigidbody2D.velocityX

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

Switch to Manual
public float velocityX;

Description

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; } } }