UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

13 lines 419 B
import { ThinBlurPostProcess } from "./thinBlurPostProcess.js"; /** * @internal */ export class ThinDepthOfFieldBlurPostProcess extends ThinBlurPostProcess { constructor(name, engine = null, direction, kernel, options) { super(name, engine, direction, kernel, { ...options, defines: `#define DOF 1\n`, }); } } //# sourceMappingURL=thinDepthOfFieldBlurPostProcess.js.map