@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.
20 lines (19 loc) • 520 B
TypeScript
import type { PrePassEffectConfiguration } from "./prePassEffectConfiguration.js";
/**
* Contains all parameters needed for the prepass to perform
* motion blur
*/
export declare class MotionBlurConfiguration implements PrePassEffectConfiguration {
/**
* Is motion blur enabled
*/
enabled: boolean;
/**
* Name of the configuration
*/
name: string;
/**
* Textures that should be present in the MRT for this effect to work
*/
readonly texturesRequired: number[];
}