A simple WebGPU and WebGL implementation of volumetric atmospheric scattering using BabylonJS. All you need are 2 files and 2 lines of code!
You can find a demo at https://barthpaleologue.github.io/volumetric-atmospheric-scattering/dist/
The graphics backend is displayed at the bottom left: the logo will either be that of WebGL or WebGPU.
You need to include the ./src/ts/atmosphericScattering.ts
in your project using ES6 imports.
import { AtmosphericScatteringPostProcess } from "./atmosphericScattering";
Then you can use it in your BabylonJS simply by writing:
const atmosphere = new AtmosphericScatteringPostProcess("atmospherePostProcess", planet: Mesh, planetRadius: number, atmosphereRadius: number, sun: Light | Mesh, camera: Camera, depthRenderer: DepthRenderer, scene: Scene);
Note that you can easily set up a depth renderer in your scene in BabylonJS with this syntax:
const depthRenderer = scene.enableDepthRenderer(camera, false, true);
The third parameter is set to true to increase the precision of the depth buffer, it is useful when working at planetary scales.
The atmosphere can be tweaked using various settings grouped in the object AtmosphericScatteringPostProcess.settings
:
export type AtmosphereSettings = {
/**
* Radius of the planet in meters
*/
planetRadius: number;
/**
* Radius of the atmosphere in meters (planetRadius + 100km in the case of Earth)
*/
atmosphereRadius: number;
/**
* Height falloff of Rayleigh scattering (bigger = slower decrease)
*/
rayleighHeight: number;
/**
* Rayleigh scattering coefficients (red, green, blue)
* @see https://sebh.github.io/publications/egsr2020.pdf (Hillaire 2020)
*/
rayleighScatteringCoefficients: Vector3;
/**
* Height falloff of Mie scattering (bigger = slower decrease)
*/
mieHeight: number;
/**
* Mie scattering coefficients (red, green, blue)
*/
mieScatteringCoefficients: Vector3;
/**
* Mie scattering asymmetry factor (between -1 and 1)
*/
mieAsymmetry: number;
/**
* Height of the ozone layer in meters above the planet surface
*/
ozoneHeight: number;
/**
* Ozone absorption coefficients (red, green, blue)
* @see https://sebh.github.io/publications/egsr2020.pdf (Hillaire 2020)
*/
ozoneAbsorptionCoefficients: Vector3;
/**
* Ozone absorption falloff around the ozone layer height (in meters)
*/
ozoneFalloff: number;
/**
* Intensity of the sun
*/
lightIntensity: number;
}
Note that if you want to scale the atmosphere by a factor X, you need to multiply the atmosphere radius, the Rayleigh and Mie height falloffs and the ozone layer height by X. At the same you probably want to divide the scattering and absorptions coefficients by X to avoid compensate for the increased optical depth.
You can take a look at the simplest usage in ./src/ts/starter.ts
.
This implementation is based on Sebastian Lague's video for Rayleigh scattering and on skythedragon's shadertoy for Mie scattering and Ozone absorption.
Both are based on Nishita's 1993 paper.
Better rendering and performance could be reached using Sebastian Hillaire 2020 paper