A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.unity3d.com/Manual/../ScriptReference/Rigidbody-rotation.html below:

Unity - Scripting API: Rigidbody.rotation

Rigidbody.rotation 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 Your name Your email Suggestion*

Cancel

Switch to Manual Description

The rotation of the Rigidbody.

Use Rigidbody.rotation to get and set the rotation of a Rigidbody using the physics engine.

Changing the rotation of a Rigidbody using Rigidbody.rotation updates the Transform after the next physics simulation step. This is faster than updating the rotation using Transform.rotation, as Transform.rotation causes all attached Colliders to recalculate their rotation relative to the Rigidbody, whereas Rigidbody.rotation sets the values directly to the physics system.

If you want to continuously rotate a rigidbody use MoveRotation instead, which takes interpolation into account.

Note: rotation is world-space.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { // Set a custom rotation: 45 degrees around the Y-axis GetComponent<Rigidbody>().rotation = Quaternion.Euler(0, 45, 0); } }


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4