UNPKG

playcanvas

Version:

PlayCanvas WebGL game engine

15 lines (12 loc) 281 B
import { Color } from '../core/math/color.js'; import { FOG_NONE } from './constants.js'; class FogParams { constructor(){ this.type = FOG_NONE; this.color = new Color(0, 0, 0); this.density = 0; this.start = 1; this.end = 1000; } } export { FogParams };