Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Rigidbody2D.rotation

Switch to Manual
public float rotation;

Description

The rotation of the rigidbody.

This is the rotation around the Z axis only.

using UnityEngine;

// Rotate rigidBody2D every frame. Start at 45 degrees.

public class ExampleScript : MonoBehaviour { public Rigidbody2D rigidBody2D;

void Start() { rigidBody2D = GetComponent<Rigidbody2D>(); rigidBody2D.rotation = 45f; }

void FixedUpdate() { rigidBody2D.rotation += 1.0f; } }

Did you find this page useful? Please give it a rating: