* Sets a vertex attribute to an Accessor. All attributes must have the same vertex * count.
(semantic: string, accessor: Accessor | null)
| 149 | * count. |
| 150 | */ |
| 151 | public setAttribute(semantic: string, accessor: Accessor | null): this { |
| 152 | return this.setRefMap('attributes', semantic, accessor, { usage: BufferViewUsage.ARRAY_BUFFER }); |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * Lists all vertex attribute {@link Accessor}s associated with the primitive, excluding any |
no outgoing calls