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
| Property | Description |
|---|
.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. |
Key Takeaways
- InstancedInterleavedBuffer extends: InterleavedBuffer
- Most relevant properties: isInstancedInterleavedBuffer, meshPerAttribute.
Connects To