Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface DrawableOptions

Options to initialize a drawable with

Hierarchy

  • DrawableOptions

Index

Properties

buffers

An array of either VertexBuffer or BufferOptions. If options are supplied, new instances are created

Optional indices

indices: IndexBuffer | number[] | Uint16Array

An array of of vertex indices, which can be supplied a number array, UInt16Array or IndexBuffer. If no indices are supplied, each three vertices are interpreted as a new triangle.

shader

Either a Shader or ShaderOptions If options are supplied, a new instance is created

Optional textures

textures: object

An object which contains either a Texture or a TextureOptions. If options are supplied, new instances are created. The keys of the object should correspond with the sampler2D uniforms in the shader.

Type declaration

Optional uniforms

uniforms: object

An object containing uniform values to be sent to the shader. The keys of the object should correspond with the uniforms in the shader. For sampler2D uniforms you should use the 'textures' option.

Type declaration

Generated using TypeDoc