Transform.localRotation Manual     Reference     Scripting  
Scripting > Runtime Classes > Transform
Transform.localRotation

var localRotation : Quaternion

Description

The rotation of the transform relative to the parent transform's rotation.

Unity stores rotations as Quaternions internally. To rotate an object, use Transform.Rotate. Use Transform.localEulerAngles for modifying the rotation as euler angles.

JavaScript
// Set the rotation to be the same as the parent
transform.localRotation = Quaternion.identity;