Energy field animation coloration shader

Hierarchy (view full)

Properties

initialUniforms: any

The initial values of the shader uniforms.

forceDefaultColor: boolean = true
fragmentShader: string = ...
FRAGMENT_END: string = ...
SHADOW: string = ...
SHADER_HEADER: string = ...

Memory allocations for the Adaptive Coloration Shader

defaultUniforms: {
    technique: number;
    shadows: number;
    contrast: number;
    saturation: number;
    colorationAlpha: number;
    intensity: number;
    attenuation: number;
    ratio: number;
    color: number[];
    time: number;
    hasColor: boolean;
    screenDimensions: number[];
    useSampler: boolean;
    primaryTexture: any;
    depthTexture: any;
    darknessLevelTexture: any;
    depthElevation: number;
    ambientBrightest: number[];
    ambientDarkness: number[];
    ambientDaylight: number[];
    weights: number[];
    dimLevelCorrection: number;
    brightLevelCorrection: number;
    computeIllumination: boolean;
    globalLight: boolean;
    globalLightThresholds: number[];
} = ...

The default uniform values for the shader. A subclass of AbstractBaseShader must implement the defaultUniforms static field.

Type declaration

  • technique: number
  • shadows: number
  • contrast: number
  • saturation: number
  • colorationAlpha: number
  • intensity: number
  • attenuation: number
  • ratio: number
  • color: number[]
  • time: number
  • hasColor: boolean
  • screenDimensions: number[]
  • useSampler: boolean
  • primaryTexture: any
  • depthTexture: any
  • darknessLevelTexture: any
  • depthElevation: number
  • ambientBrightest: number[]
  • ambientDarkness: number[]
  • ambientDaylight: number[]
  • weights: number[]
  • dimLevelCorrection: number
  • brightLevelCorrection: number
  • computeIllumination: boolean
  • globalLight: boolean
  • globalLightThresholds: number[]
VERTEX_ATTRIBUTES: string = ...

Common attributes for vertex shaders.

VERTEX_UNIFORMS: string = ...

Common uniforms for vertex shaders.

VERTEX_FRAGMENT_VARYINGS: string = ...

Common varyings shared by vertex and fragment shaders.

VERTEX_FUNCTIONS: string = ""

Common functions used by the vertex shaders.

Abstract

FRAGMENT_UNIFORMS: string = ...

Common uniforms shared by fragment shaders.

FRAGMENT_FUNCTIONS: string = ...

Common functions used by the fragment shaders.

Abstract

CONSTANTS: string = ...

Inherit Doc

vertexShader: string = ...

The raw vertex shader used by this class. A subclass of AbstractBaseShader must implement the vertexShader static field.

CONTRAST: string = ...

Contrast adjustment

SATURATION: string = ...

Saturation adjustment

EXPOSURE: string = ...

Exposure adjustment

SWITCH_COLOR: string = ...

Switch between an inner and outer color, by comparing distance from center to ratio Apply a strong gradient between the two areas if attenuation uniform is set to true

TRANSITION: string = ...

Transition between bright and dim colors, if requested

FALLOFF: string = ...

Incorporate falloff if a attenuation uniform is requested

COMPUTE_ILLUMINATION: string = ...

Compute illumination uniforms

FRAGMENT_BEGIN: string = ...

Initialize fragment with common properties

SHADER_TECHNIQUES: Record<string, ShaderTechnique> = ...

A mapping of available shader techniques

Accessors

  • get isRequired(): boolean
  • Flag whether the coloration shader is currently required.

    Returns boolean

  • get ADJUSTMENTS(): string
  • The adjustments made into fragment shaders

    Returns string

  • get COLORATION_TECHNIQUES(): string
  • The coloration technique coloration shader fragment

    Returns string

  • get ILLUMINATION_TECHNIQUES(): string
  • The coloration technique illumination shader fragment

    Returns string

  • get BACKGROUND_TECHNIQUES(): string
  • The coloration technique background shader fragment

    Returns string

Methods

  • Protected Internal

    Perform operations which are required before binding the Shader to the Renderer.

    Parameters

    • mesh: DisplayObject

      The mesh display object linked to this shader.

    • renderer: Renderer

      The renderer

    Returns void

  • Construct adaptive shader according to shader type

    Parameters

    • shaderType: string

      shader type to construct : coloration, illumination, background, etc.

    Returns string

    the constructed shader adaptive block