I’m getting this visual artificing when using the Cesium globe. I’m using sequencer to create a dynamic introduction to a data simulator. Can anyone comment on how to clean this up? I’m on a university network connection so I assume that the tiling should be able to keep up…
It’s a common problem with Unreal’s SunSky. The fundamental issue is that Unreal’s atmosphere system assumes the Earth is a sphere. It’s not.
CesiumSunSky tries to work around this by adjusting the radius of the Earth for atmosphere purposes based on the camera position. There’s a comment in the source code explaining how this works:
It seems like this adjustment isn’t working in your case, because you’re seeing what that comments describes as a “very distracting artifact.” The most likely cause is that you’re viewing through a different camera from the one that CesiumSunSky is using to adjust the atmosphere radius.
To get the camera for adjustment purposes, CesiumSunSky uses this code:
So, essentially, it uses the location of the first player’s pawn. If the camera you’re actually using to view the globe is somewhere else, then this won’t work.
Unfortunately there’s no way to change this currently, short of changing the code. I wrote up an issue to make this configurable: