UNPKG

@needle-tools/engine

Version:

Needle Engine is a web-based runtime for 3D apps. It runs on your machine for development with great integrations into editors like Unity or Blender - and can be deployed onto any device! It is flexible, extensible and networking and XR are built-in.

24 lines (23 loc) 824 B
import { type EffectProviderResult, PostProcessingEffect } from "../PostProcessingEffect.js"; import { VolumeParameter } from "../VolumeParameter.js"; /** * @category Effects * @group Components */ export declare class ColorAdjustments extends PostProcessingEffect { get typeName(): string; /** * Whether values for contrast, hueshift or saturation are remapped to a different range. */ remap: boolean; readonly postExposure: VolumeParameter; /** * Range -1 to 1, where 0 is the default value, -1 is the lowest contrast and 1 is the highest contrast. * @default 0 */ readonly contrast: VolumeParameter; readonly hueShift: VolumeParameter; readonly saturation: VolumeParameter; init(): void; onCreateEffect(): EffectProviderResult; }