How to set Rotation(East-Up-North)?

I want to set CesiumGlobeAnchorRotation(East-Up-North), but take a look at the CesiumGlobeAnchor component, I cant found the way to set it

CesiumGlobeAnchor has a rotationEastUpNorth property. Just set it. The property is a Quaternion, so if you want to set it with Euler angles instead, use Quaternion.Euler:



That’s my code, but it doesn’t work. What’s wrong?

The UI displays Euler angles. You’re setting a quaternion. And in fact you’re setting an invalid quaternion. Use that Euler method I mentioned previously. Something like this (untested): _cesiumGlobeAnchor.rotationEastUpNorth = Quaternion.Euler(0, 0, 0);