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

OutlineEffect

Extends:

three~EventDispatcherEffect → OutlineEffect

Indirect Implements:

An outline effect.

Constructor Summary

Public Constructor
public

constructor(scene: Scene, camera: Camera, options: Object)

Constructs a new outline effect.

Member Summary

Public Members
public get
this get was deprecated. Use blurPass.enabled instead.

Indicates whether the outlines should be blurred.

public set
public

A blur pass.

public get
this get was deprecated.

Indicates whether dithering is enabled.

public set
public get

The edge strength.

public set
public get
this get was deprecated. Use resolution.height instead.

The current height of the internal render targets.

public set
public get

The hidden edge color.

public set
public get
this get was deprecated. Use blurPass.kernelSize instead.

The blur kernel size.

public set
public set
public set
public get
this get is experimental. Requires three >= r138.

The amount of MSAA samples.

public set
public get

The pattern scale.

public set
public get

patternTexture: Texture

The pattern texture.

public set
public

The pulse speed.

public get

The resolution of this effect.

public

A selection of objects that will be outlined.

public get
this get was deprecated. Use selection.layer instead.

The selection layer.

public set
public get

The visible edge color.

public set
public get
this get was deprecated. Use resolution.width instead.

The current width of the internal render targets.

public set
public get

Indicates whether X-ray mode is enabled.

public set

Method Summary

Public Methods
public

clearSelection(): OutlinePass

this method was deprecated. Use selection.clear() instead.

Clears the list of selected objects.

public

deselectObject(object: Object3D): OutlinePass

this method was deprecated. Use selection.delete() instead.

Deselects an object.

public
this method was deprecated. Use blurPass instead.

Returns the blur pass.

public
this method was deprecated. Use pulseSpeed instead.

Returns the pulse speed.

public

getResolution(): Resizer

Returns the resolution.

public
this method was deprecated. Use resolution instead.

Returns the current resolution scale.

public
this method was deprecated. Use selection instead.

Returns the selection.

public

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

Performs initialization tasks.

public
this method was deprecated. Use xRay instead.

Indicates whether X-ray mode is enabled.

public

selectObject(object: Object3D): OutlinePass

this method was deprecated. Use selection.add() instead.

Selects an object.

public

setPatternTexture(value: Texture)

this method was deprecated. Use patternTexture instead.

Sets the pattern texture.

public
this method was deprecated. Use pulseSpeed instead.

Sets the pulse speed.

public
this method was deprecated. Use resolution instead.

Sets the resolution scale.

public

setSelection(objects: Object3D[]): OutlinePass

this method was deprecated. Use selection.set() instead.

Clears the current selection and selects a list of objects.

public

setSize(width: Number, height: Number)

Updates the size of internal render targets.

public
this method was deprecated. Use xRay instead.

Enables or disables X-ray outlines.

public

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

Updates this effect.

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(scene: Scene, camera: Camera, options: Object) source

Constructs a new outline effect.

Override:

Effect#constructor

Params:

NameTypeAttributeDescription
scene Scene

The main scene.

camera Camera

The main camera.

options Object
  • optional

The options.

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

The blend function. Use BlendFunction.ALPHA for dark outlines.

options.patternTexture Texture
  • optional
  • default: null

A pattern texture.

options.patternScale Number
  • optional
  • default: 1.0

The pattern scale.

options.edgeStrength Number
  • optional
  • default: 1.0

The edge strength.

options.pulseSpeed Number
  • optional
  • default: 0.0

The pulse speed. A value of zero disables the pulse effect.

options.visibleEdgeColor Number
  • optional
  • default: 0xffffff

The color of visible edges.

options.hiddenEdgeColor Number
  • optional
  • default: 0x22090a

The color of hidden edges.

options.kernelSize KernelSize
  • optional
  • default: KernelSize.VERY_SMALL

The blur kernel size.

options.blur Boolean
  • optional
  • default: false

Whether the outline should be blurred.

options.xRay Boolean
  • optional
  • default: true

Whether occluded parts of selected objects should be visible.

options.multisampling Number
  • optional
  • default: 0

The number of samples used for multisample antialiasing. Requires WebGL 2.

options.resolutionScale Number
  • optional
  • default: 0.5

The resolution scale.

options.resolutionX Number
  • optional
  • default: Resolution.AUTO_SIZE

The horizontal resolution.

options.resolutionY Number
  • optional
  • default: Resolution.AUTO_SIZE

The vertical resolution.

options.width Number
  • optional
  • default: Resolution.AUTO_SIZE

Deprecated. Use resolutionX instead.

options.height Number
  • optional
  • default: Resolution.AUTO_SIZE

Deprecated. Use resolutionY instead.

Public Members

public get blur: Boolean source

this get was deprecated. Use blurPass.enabled instead.

Indicates whether the outlines should be blurred.

public set blur source

public blurPass: KawaseBlurPass source

A blur pass.

public get dithering: Boolean source

this get was deprecated.

Indicates whether dithering is enabled.

public set dithering source

public get edgeStrength: Number source

The edge strength.

public set edgeStrength source

public get height: Number source

this get was deprecated. Use resolution.height instead.

The current height of the internal render targets.

public set height source

public get hiddenEdgeColor: Color source

The hidden edge color.

public set hiddenEdgeColor source

public get kernelSize: KernelSize source

this get was deprecated. Use blurPass.kernelSize instead.

The blur kernel size.

public set kernelSize source

public set mainCamera source

Sets the main camera.

Override:

Effect#mainCamera

public set mainScene source

Sets the main scene.

Override:

Effect#mainScene

public get multisampling: Number source

this get is experimental. Requires three >= r138.

The amount of MSAA samples.

Requires WebGL 2. Set to zero to disable multisampling.

public set multisampling source

public get patternScale: Number source

The pattern scale.

public set patternScale source

public get patternTexture: Texture source

The pattern texture. Set to null to disable.

public set patternTexture source

public pulseSpeed: Number source

The pulse speed. Set to 0 to disable.

public get resolution: Resolution source

The resolution of this effect.

public selection: Selection source

A selection of objects that will be outlined.

The default layer of this selection is 10.

public get selectionLayer: Number source

this get was deprecated. Use selection.layer instead.

The selection layer.

public set selectionLayer source

public get visibleEdgeColor: Color source

The visible edge color.

public set visibleEdgeColor source

public get width: Number source

this get was deprecated. Use resolution.width instead.

The current width of the internal render targets.

public set width source

public get xRay: Boolean source

Indicates whether X-ray mode is enabled.

public set xRay source

Public Methods

public clearSelection(): OutlinePass source

this method was deprecated. Use selection.clear() instead.

Clears the list of selected objects.

Return:

OutlinePass

This pass.

public deselectObject(object: Object3D): OutlinePass source

this method was deprecated. Use selection.delete() instead.

Deselects an object.

Params:

NameTypeAttributeDescription
object Object3D

The object that should no longer be outlined.

Return:

OutlinePass

This pass.

public getBlurPass(): KawaseBlurPass source

this method was deprecated. Use blurPass instead.

Returns the blur pass.

Return:

KawaseBlurPass

The blur pass.

public getPulseSpeed(): Number source

this method was deprecated. Use pulseSpeed instead.

Returns the pulse speed.

Return:

Number

The speed.

public getResolution(): Resizer source

Returns the resolution.

Return:

Resizer

The resolution.

public getResolutionScale(): Number source

this method was deprecated. Use resolution instead.

Returns the current resolution scale.

Return:

Number

The resolution scale.

public getSelection(): Selection source

this method was deprecated. Use selection instead.

Returns the selection.

Return:

Selection

The selection.

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

Performs initialization tasks.

Override:

Effect#initialize

Params:

NameTypeAttributeDescription
renderer WebGLRenderer

The renderer.

alpha Boolean

Whether the renderer uses the alpha channel or not.

frameBufferType Number

The type of the main frame buffers.

public isXRayEnabled(): Boolean source

this method was deprecated. Use xRay instead.

Indicates whether X-ray mode is enabled.

Return:

Boolean

Whether X-ray mode is enabled.

public selectObject(object: Object3D): OutlinePass source

this method was deprecated. Use selection.add() instead.

Selects an object.

Params:

NameTypeAttributeDescription
object Object3D

The object that should be outlined.

Return:

OutlinePass

This pass.

public setPatternTexture(value: Texture) source

this method was deprecated. Use patternTexture instead.

Sets the pattern texture.

Params:

NameTypeAttributeDescription
value Texture

The new texture.

public setPulseSpeed(value: Number) source

this method was deprecated. Use pulseSpeed instead.

Sets the pulse speed. Set to zero to disable.

Params:

NameTypeAttributeDescription
value Number

The speed.

public setResolutionScale(scale: Number) source

this method was deprecated. Use resolution instead.

Sets the resolution scale.

Params:

NameTypeAttributeDescription
scale Number

The new resolution scale.

public setSelection(objects: Object3D[]): OutlinePass source

this method was deprecated. Use selection.set() instead.

Clears the current selection and selects a list of objects.

Params:

NameTypeAttributeDescription
objects Object3D[]

The objects that should be outlined. This array will be copied.

Return:

OutlinePass

This pass.

public setSize(width: Number, height: Number) source

Updates the size of internal render targets.

Override:

Effect#setSize

Params:

NameTypeAttributeDescription
width Number

The width.

height Number

The height.

public setXRayEnabled(value: Boolean) source

this method was deprecated. Use xRay instead.

Enables or disables X-ray outlines.

Params:

NameTypeAttributeDescription
value Boolean

Whether X-ray should be enabled.

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

Updates this effect.

Override:

Effect#update

Params:

NameTypeAttributeDescription
renderer WebGLRenderer

The renderer.

inputBuffer WebGLRenderTarget

A frame buffer that contains the result of the previous pass.

deltaTime Number
  • optional

The time between the last frame and the current one in seconds.