Phaser API Documentation

  Version: 
addBlendMode(func, equation)

Description:

Creates a new custom blend mode for the renderer.

See https://developer.mozilla.org/en-US/docs/Web/API/WebGL_API/Constants#Blending_modes

Parameters:

name type description
func Array.<GLenum>

An array containing the WebGL functions to use for the source and the destination blending factors, respectively. See the possible constants for {@link WebGLRenderingContext#blendFunc()}.

equation GLenum

The equation to use for combining the RGB and alpha components of a new pixel with a rendered one. See the possible constants for {@link WebGLRenderingContext#blendEquation()}.

Returns:
Description:

The index of the new blend mode, used for referencing it in the future.

Type:
  • number
Since: 3.0.0