Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

Rigidbody.rotation

Switch to Manual
public var rotation: Quaternion;

Description

The rotation of the rigdibody.

This is similar to setting transform.rotation, however the rotation will only be applied to the transform at the end of the physics step. If you want to continously move a rigidbody or kinematic rigidbody use MovePosition and MoveRotation instead.

	function Start () {
		rigidbody.rotation = Quaternion.identity;
	}