Capítulo 665 de 859

Chapter 665: InstancedInterleavedBuffer

Core Idea

An instanced version of an interleaved buffer.

Key Concepts

  • isInstancedInterleavedBuffer : boolean (readonly): This flag can be used for type testing.
  • meshPerAttribute : number: Defines how often a value of this buffer attribute should be repeated, see [InstancedBufferAttribute#meshPerAttribute](InstancedBufferAttri…

Reference Tables

Constructor

Signature
new InstancedInterleavedBuffer( array : TypedArray, stride : number, meshPerAttribute : number )

Properties

PropertyDescription
.isInstancedInterleavedBuffer : boolean (readonly)This flag can be used for type testing.
.meshPerAttribute : numberDefines how often a value of this buffer attribute should be repeated, see InstancedBufferAttribute#meshPerAttribute.

Key Takeaways

  1. InstancedInterleavedBuffer extends: InterleavedBuffer
  2. Most relevant properties: isInstancedInterleavedBuffer, meshPerAttribute.

Connects To