Home Reference Source
import {HueSaturationEffect} from 'postprocessing'
public class | source

HueSaturationEffect

Extends:

three~EventDispatcherEffect → HueSaturationEffect

Indirect Implements:

A hue/saturation effect.

Reference: https://github.com/evanw/glfx.js

Constructor Summary

Public Constructor
public

constructor(options: Object)

Constructs a new hue/saturation effect.

Member Summary

Public Members
public get

The hue.

public set

hue

public get

The saturation.

public set

Method Summary

Public Methods
public
this method was deprecated. Use hue instead.

Returns the hue.

public
this method was deprecated. Use saturation instead.

Returns the saturation.

public

setHue(value: Number)

this method was deprecated. Use hue instead.

Sets the hue.

public
this method was deprecated. Use saturation instead.

Sets the saturation.

Inherited Summary

From class Effect
public get

inputColorSpace: ColorSpace

this get is experimental.

The input color space.

public set

mainCamera: Camera

Sets the main camera.

public set

mainScene: Scene

Sets the main scene.

public get

outputColorSpace: ColorSpace

this get is experimental.

The output color space.

protected set

inputColorSpace: ColorSpace

this set is experimental.
protected set

outputColorSpace: ColorSpace

this set is experimental.
public

The blend mode of this effect.

public

Preprocessor macro definitions.

public

WebGL extensions that are required by this effect.

public

The name of this effect.

public

uniforms: Map<String, Uniform>

Shader uniforms.

protected

renderer: WebGLRenderer

this member was deprecated.

The renderer.

public

Performs a shallow search for properties that define a dispose method and deletes them.

public

Returns the effect attributes.

public
this method was deprecated. Use blendMode instead.

Returns the blend mode.

public
this method was deprecated. Use defines instead.

Returns the preprocessor macro definitions.

public
this method was deprecated. Use extensions instead.

Returns the WebGL extensions that are required by this effect.

public

Returns the fragment shader.

public
this method was deprecated. Use name instead.

Returns the name of this effect.

public

getUniforms(): Map<String, Uniform>

this method was deprecated. Use uniforms instead.

Returns the uniforms of this effect.

public

Returns the vertex shader.

public

initialize(renderer: WebGLRenderer, alpha: Boolean, frameBufferType: Number)

Performs initialization tasks.

public

setDepthTexture(depthTexture: Texture, depthPacking: DepthPackingStrategies)

Sets the depth texture.

public

setRenderer(renderer: WebGLRenderer)

this method was deprecated.

Sets the renderer.

public

setSize(width: Number, height: Number)

Updates the size of this effect.

public

update(renderer: WebGLRenderer, inputBuffer: WebGLRenderTarget, deltaTime: Number)

Updates this effect by performing supporting operations.

protected

Sets the effect attributes.

protected

Informs the associated EffectPass that this effect requires a shader recompilation.

protected

setFragmentShader(fragmentShader: String)

Sets the fragment shader.

protected

setVertexShader(vertexShader: String)

Sets the vertex shader.

Public Constructors

public constructor(options: Object) source

Constructs a new hue/saturation effect.

Override:

Effect#constructor

Params:

NameTypeAttributeDescription
options Object
  • optional

The options.

options.blendFunction BlendFunction
  • optional
  • default: BlendFunction.SRC

The blend function of this effect.

options.hue Number
  • optional
  • default: 0.0

The hue in radians.

options.saturation Number
  • optional
  • default: 0.0

The saturation factor, ranging from -1 to 1, where 0 means no change.

Public Members

public get hue: Number source

The hue.

public set hue source

public get saturation: Number source

The saturation.

public set saturation source

Public Methods

public getHue(): Number source

this method was deprecated. Use hue instead.

Returns the hue.

Return:

Number

The hue in radians.

public getSaturation(): Number source

this method was deprecated. Use saturation instead.

Returns the saturation.

Return:

Number

The saturation.

public setHue(value: Number) source

this method was deprecated. Use hue instead.

Sets the hue.

Params:

NameTypeAttributeDescription
value Number

The hue in radians.

public setSaturation(value: Number) source

this method was deprecated. Use saturation instead.

Sets the saturation.

Params:

NameTypeAttributeDescription
value Number

The saturation.