Earth

A procedural planet with GPU-baked albedo, night lights and clouds, a lit atmosphere, and an HDR bloom chain tuned so only the sun glows.

Open fullscreen
export interface EarthControls {
  readonly sunDegrees: number;
  readonly autoRotate: boolean;
}
 
export const DEFAULT_EARTH_CONTROLS: EarthControls = {
  sunDegrees: 0,
  autoRotate: true,
};