IRenderer script interface

The IRenderer script interface provides access to Construct's renderer in the runtime. The same interface can be used regardless of the underlying rendering technology (e.g. WebGL or WebGPU). The interface's methods provide high-level drawing commands implemented by Construct, so you don't need to handle low-level concerns like vertex buffers.

Currently IRenderer exists mainly for the addon SDK. It is not typically accessible from JavaScript code in projects.

Renderer state

IRenderer uses a persistent rendering state. Therefore to correctly render something, all the intended state must be specified, otherwise it will use an undefined previous state. IRenderer simplifies the renderer state to:

  1. A blend mode. Typically a normal alpha blend mode is used.
  2. A fill mode (internally, the current fragment shader). The fill modes can be color fill (draw a solid color), texture fill (draw a texture), and smooth line fill (for drawing smooth lines).
  3. A color set by setColor() or setColorRgba(). The alpha component of the color is used as the opacity in texture fill mode.
  4. A texture set by setTexture(). This is only used in texture fill mode.

Therefore a drawing method should begin by specifying the blend mode, the fill mode, the color, and the texture (if texture fill mode is used), before continuing to draw. The renderer efficiently discards redundant calls, so if the state does not actually change then these calls have minimal performance overhead.

Once all state is set up, quads can be issued using one of the rect() or quad() method overloads. These methods draw using the currently set state.

Texture options

Some texture methods accept the same options objects to specify the texture parameters. To avoid repeating them, the common options that can be specified are documented below.

  • wrapX: the texture horizontal wrap mode: one of "clamp-to-edge", "repeat", "mirror-repeat"
  • wrapY: as with wrapX but for the vertical wrap mode
  • sampling: the texture sampling mode, one of "nearest", "bilinear" or "trilinear" (default)
  • mipMap: boolean indicating if mipmaps should be used for this texture, default true

Methods

setAlphaBlendMode()
Set the blend mode to a premultiplied alpha blending mode.
setColorFillMode()
Set the fill mode to draw a solid color, specified by the current color.
setTextureFillMode()
Set the fill mode to draw a texture, specified by the current texture, and using the alpha component of the current color as the opacity.
setSmoothLineFillMode()
Set the fill mode to draw smooth lines using the current color.
setColor(color)
Set the current color from a four-element array representing the RGBA components in [0, 1] range, e.g. [1, 0, 0, 1] for opaque red.
setColorRgba(r, g, b, a)
Set the current color by directly passing the RGBA components. in [0, 1] range.
setOpacity(o)
Set only the alpha component of the current color in [0, 1] range. Note this does not affect the RGB components.
resetColor()
Set the current color to opaque white (1, 1, 1, 1).
setCurrentZ(z)
getCurrentZ()
Set and get the current Z component used for all 2D drawing commands that don't specify Z components, such as the rect2() and quad3().
rect(rect)
Draw a rectangle given by an DOMRect.
rect2(left, top, right, bottom)
Draw a rectangle by directly passing the left, top, right and bottom positions.
quad(quad)
Draw a quad given by a DOMQuad.
quad2(tlx, tly, trx, try_, brx, bry, blx, bly)
Draw a quad by directly passing the positions of each of the four points in the quad.
quad3(quad, rect)
Draw a quad given by a DOMQuad, using a DOMRect for the source texture co-ordinates to draw from.
quad4(quad, texQuad)
Draw a quad given by an DOMQuad, using another DOMQuad for the source texture co-ordinates to draw from.
quad3D(tlx, tly, tlz, trx, try_, trz, brx, bry, brz, blx, bly, blz, rect)
quad3D2(tlx, tly, tlz, trx, try_, trz, brx, bry, brz, blx, bly, blz, texQuad)
Draw a 3D quad, specifying all four points of the quad with X, Y and Z co-ordinates. The first overload accepts texture co-ordinates via a DOMRect rect, and the second accepts texture co-ordinates via a DOMQuad texQuad.
convexPoly(pointsArray)
Draw a convex polygon using the given array of points, in alternating X, Y order. Therefore the size of the array must be even, and must contain at least six elements (to define three points).
line(x1, y1, x2, y2)
Draws a quad from the point (x1, y1) to (x2, y2) with the current line width.
texturedLine(x1, y1, x2, y2, u, v)
Draws a quad from the point (x1, y1) to (x2, y2) with the current line width, and using (u, 0) as the texture co-ordinates at the start, and (v, 0) as the texture co-ordinates at the end.
lineRect(left, top, right, bottom)
Draws four lines along the edges of a given rectangle.
lineRect2(rect)
Draws four lines along the edges of a given DOMRect.
lineQuad(quad)
Draws four lines along the edges of a given DOMQuad.
pushLineWidth(w)
popLineWidth()
Set the current line width for line-drawing calls. This must be followed by a popLineWidth() call when finished to restore the previous line width.
pushLineCap(lineCap)
popLineCap()
Set the current line cap for line-drawing calls. This must be followed by a popLineCap() call when finished to restore the previous line cap. The available line caps are "butt" and "square".
setTexture(texture)
Set the current texture to a given ITexture.
createDynamicTexture(width, height, opts)
Create a new empty ITexture for dynamic use, i.e. expecting the texture content to be replaced using updateTexture(). The size of the texture is given by width and height which must be positive integers. opts specifies options for the texture - see the section Texture options above for more details.
updateTexture(data, texture, opts)
Upload data as the new texture contents for the ITexture texture. This can only be used for textures created with createDynamicTexture() and managed by your addon.
data can be one of the following types: HTMLImageElement, HTMLVideoElement, HTMLCanvasElement, ImageBitmap, OffscreenCanvas or ImageData. Note in worker mode the DOM types cannot be used (HTMLImageElement, HTMLVideoElement, HTMLCanvasElement); in this case use ImageBitmap or OffscreenCanvas instead. This method cannot resize an existing texture, so the data must match the size the texture was created with; if the size needs to change, destroy and re-create the texture.
opts specifies options for the texture upload which is an object that can include the following properties:

  • premultiplyAlpha: a boolean indicating whether to premultiply alpha of the image content specified by data (default true). Construct always renders using premultiplied alpha so this is normally necessary; however if the data is known to already be premultiplied, set this to false.
deleteTexture(texture)
Delete an ITexture, releasing its resources. This can only be used for textures created with createDynamicTexture() and managed by your addon. Do not attempt to delete textures managed by the Construct engine.
async loadTextureForImageInfo(imageInfo, opts)
For use with the addon SDK. Load a texture for a given IImageInfo. Returns a promise that resolves with the loaded ITexture. opts specifies options for the texture - see the section Texture options above for more details.
releaseTextureForImageInfo(imageInfo)
For use with the addon SDK. Release a texture for a given IImageInfo that was previously loaded with loadTextureForImageInfo().
getTextureForImageInfo(imageInfo)
For use with the addon SDK. Returns the existing ITexture for a given IImageInfo that was previously loaded with loadTextureForImageInfo(), or returns null if no texture is loaded (or the texture is still asynchronously loading).
createRendererText()
Return a new IRendererText interface. This manages text wrapping, drawing text, and uploading the results to a WebGL texture.
setDeviceTransform()
Set the co-ordinate system to be in device transform mode, which is in units of device pixels and relative to the screen. This can be useful for achieving pixel-perfect rendering.
setLayerTransform(layer)
Set the co-ordinate system to match the given ILayer. This is the default mode - this method is normally called after setDeviceTransform() to restore normal rendering.
Construct 3 Manual 2024-05-15