babylon.highlightsPostProcess.ts 439 B

1234567
  1. module BABYLON {
  2. export class HighlightsPostProcess extends PostProcess {
  3. constructor(name: string, options: number | PostProcessOptions, camera: Nullable<Camera>, samplingMode?: number, engine?: Engine, reusable?: boolean, textureType: number = Engine.TEXTURETYPE_UNSIGNED_INT) {
  4. super(name, "highlights", null, null, options, camera, samplingMode, engine, reusable, null, textureType);
  5. }
  6. }
  7. }