@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.
17 lines (16 loc) • 830 B
TypeScript
import type { FrameGraph } from "../../../index.js";
import { ThinExtractHighlightsPostProcess } from "../../../PostProcesses/thinExtractHighlightsPostProcess.js";
import { FrameGraphPostProcessTask } from "./postProcessTask.js";
/**
* Task used to extract highlights from a scene.
*/
export declare class FrameGraphExtractHighlightsTask extends FrameGraphPostProcessTask {
readonly postProcess: ThinExtractHighlightsPostProcess;
/**
* Constructs a new extract highlights task.
* @param name The name of the task.
* @param frameGraph The frame graph the task belongs to.
* @param thinPostProcess The thin post process to use for the task. If not provided, a new one will be created.
*/
constructor(name: string, frameGraph: FrameGraph, thinPostProcess?: ThinExtractHighlightsPostProcess);
}