Home Reference Source
import {GridEffect} from 'postprocessing/src/effects/GridEffect.js'
public class | source

GridEffect

Extends:

Effect → GridEffect

Indirect Implements:

A grid effect.

Constructor Summary

Public Constructor
public

constructor(options: Object)

Constructs a new grid effect.

Member Summary

Private Members
private

The grid line width.

private

resolution: Vector2

The original resolution.

private

The grid scale, relative to the screen height.

Method Summary

Public Methods
public

Returns the current grid line width.

public

Returns the current grid scale.

public

setLineWidth(lineWidth: Number)

Sets the grid line width.

public

setScale(scale: Number)

Sets the grid scale.

public

setSize(width: Number, height: Number)

Updates the size of this pass.

Inherited Summary

From class Effect
public

[key]: *

public

The effect attributes.

public

The blend mode of this effect.

public

Preprocessor macro definitions.

public

The fragment shader.

public

The name of this effect.

public

uniforms: Map<String, Uniform>

Shader uniforms.

public

The vertex shader.

public

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

public

initialize(renderer: WebGLRenderer, alpha: Boolean)

Performs initialization tasks.

public

setDepthTexture(depthTexture: Texture, depthPacking: Number)

Sets the depth texture.

public

setSize(width: Number, height: Number)

Updates the size of this effect.

public

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

Updates the effect by performing supporting operations.

Public Constructors

public constructor(options: Object) source

Constructs a new grid effect.

Override:

Effect#constructor

Params:

NameTypeAttributeDescription
options Object
  • optional

The options.

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

The blend function of this effect.

options.scale Number
  • optional
  • default: 1.0

The scale of the grid pattern.

options.lineWidth Number
  • optional
  • default: 0.0

The line width of the grid pattern.

Private Members

private lineWidth: Number source

The grid line width.

private resolution: Vector2 source

The original resolution.

private scale: Number source

The grid scale, relative to the screen height.

Public Methods

public getLineWidth(): Number source

Returns the current grid line width.

Return:

Number

The grid line width.

public getScale(): Number source

Returns the current grid scale.

Return:

Number

The grid scale.

public setLineWidth(lineWidth: Number) source

Sets the grid line width.

Params:

NameTypeAttributeDescription
lineWidth Number

The new grid line width.

public setScale(scale: Number) source

Sets the grid scale.

Params:

NameTypeAttributeDescription
scale Number

The new grid scale.

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

Updates the size of this pass.

Override:

Effect#setSize

Params:

NameTypeAttributeDescription
width Number

The width.

height Number

The height.