How to specify the rotation angle in degrees, in the inspector?

Rotation of the GameObject is shown in inspector as a Quaternion…

alt text

How i can change rotation in degrees? As shown in Unity help here

alt text

Note:
Rotation - Rotation of the Transform around the X, Y, and Z axes, measured in degrees.

Sorry for my english :slight_smile:

Hey there,

There are two possible reasons to why your inspector does look like the one on the docs.

  1. You are in debug mode (it’s missing Local ID in file so I don’t think it’s this).
    53452-switchmode.png

  2. You have a custom inspector that is redrawing the Transform component. Search your project for [CustomEditor(typoe(Transform))]. You should remove this if you don’t want it.

Cheers,

Yea, debug mode in inspector creates this problem, but in this case the problem was different.

I found answer for my queshens - Inspector window transform component showing ONLY local cordinates - Unity Answers