I want to set CesiumGlobeAnchor
Rotation(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
:
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);